annotate lisp/progmodes/etags.el @ 16473:4ef76e689d69

(refer-bib-directory): New variable, list of directories where to look for bib files. Special values `texinputs' and `bibinputs' mean take directory list from corresponding environment variable. (refer-bib-files): New special value `auto', for looking up all files in directories pointed to by refer-bib-directory. I have the feeling that this isn't really my code but came from the net (copylefted). However, I cannot trace this down any more. If it isn't mine, it's probably Ashwin's. (refer-get-bib-files): Support `auto' value of refer-bib-files. Support `texinputs', `bibinputs' value of refer-bib-directory. (refer-saved-state, refer-previous-keywords, refer-saved-pos, refer-same-file): Properly declared (defvar) these variables. (refer-yank-key): New function. (refer-find-entry-internal): Find bibliography entries in other window, with minimal reconfiguration of windows. (refer-expand-files): New function.
author Richard M. Stallman <rms@gnu.org>
date Sat, 26 Oct 1996 18:15:32 +0000
parents 168e1370e887
children b24b7ef8573b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2229
bd3c525fa6fc Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1976
diff changeset
1 ;;; etags.el --- etags facility for Emacs
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
2
10429
c37ee605ba79 (etags-tags-completion-table): Don't let match string contain a \177.
Roland McGrath <roland@gnu.org>
parents: 10402
diff changeset
3 ;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993, 1994, 1995
1806
da47cfb7624e (visit-tags-table-buffer): Error if called with 'same and no current table.
Roland McGrath <roland@gnu.org>
parents: 1724
diff changeset
4 ;; Free Software Foundation, Inc.
846
20674ae6bf52 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 824
diff changeset
5
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
6 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
7 ;; Keywords: tools
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
8
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 662
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 ;; any later version.
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 ;; GNU General Public License for more details.
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13731
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13731
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13731
diff changeset
24 ;; Boston, MA 02111-1307, USA.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
26 ;;; Code:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
27
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
28 ;;;###autoload
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
29 (defvar tags-file-name nil
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
30 "*File name of tags table.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
31 To switch to a new tags table, setting this variable is sufficient.
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
32 If you set this variable, do not also set `tags-table-list'.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
33 Use the `etags' program to make a tags table file.")
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
34 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table.
824
b7ba8d69e136 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 817
diff changeset
35 ;;;###autoload (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
36
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
37 ;;;###autoload
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
38 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
39 (defvar tags-table-list nil
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
40 "*List of file names of tags tables to search.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
41 An element that is a directory means the file \"TAGS\" in that directory.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
42 To switch to a new list of tags tables, setting this variable is sufficient.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
43 If you set this variable, do not also set `tags-file-name'.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
44 Use the `etags' program to make a tags table file.")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
45
6140
35fc497c9f4e (tags-add-tables): Change default value to 'ask-user; update doc.
Roland McGrath <roland@gnu.org>
parents: 5892
diff changeset
46 ;;;###autoload
35fc497c9f4e (tags-add-tables): Change default value to 'ask-user; update doc.
Roland McGrath <roland@gnu.org>
parents: 5892
diff changeset
47 (defvar tags-add-tables 'ask-user
7112
91ba2f787c8f (tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6245
diff changeset
48 "*Control whether to add a new tags table to the current list.
91ba2f787c8f (tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6245
diff changeset
49 t means do; nil means don't (always start a new list).
91ba2f787c8f (tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 6245
diff changeset
50 Any other value means ask the user whether to add a new tags table
5174
bb40928e9e47 (tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5079
diff changeset
51 to the current list (as opposed to starting a new list).")
bb40928e9e47 (tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5079
diff changeset
52
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
53 (defvar tags-table-computed-list nil
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
54 "List of tags tables to search, computed from `tags-table-list'.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
55 This includes tables implicitly included by other tables. The list is not
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
56 always complete: the included tables of a table are not known until that
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
57 table is read into core. An element that is `t' is a placeholder
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
58 indicating that the preceding element is a table that has not been read
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
59 into core and might contain included tables to search.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
60 See `tags-table-check-computed-list'.")
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
61
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
62 (defvar tags-table-computed-list-for nil
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
63 "Value of `tags-table-list' that `tags-table-computed-list' corresponds to.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
64 If `tags-table-list' changes, `tags-table-computed-list' is thrown away and
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
65 recomputed; see `tags-table-check-computed-list'.")
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
66
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
67 (defvar tags-table-list-pointer nil
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
68 "Pointer into `tags-table-computed-list' for the current state of searching.
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
69 Use `visit-tags-table-buffer' to cycle through tags tables in this list.")
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
70
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
71 (defvar tags-table-list-started-at nil
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
72 "Pointer into `tags-table-computed-list', where the current search started.")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
73
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
74 (defvar tags-table-set-list nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
75 "List of sets of tags table which have been used together in the past.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
76 Each element is a list of strings which are file names.")
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
78 ;;;###autoload
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
79 (defvar find-tag-hook nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
80 "*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
81 The value in the buffer in which \\[find-tag] is done is used,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
82 not the value in the buffer \\[find-tag] goes to.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
83
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
84 ;;;###autoload
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
85 (defvar find-tag-default-function nil
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
86 "*A function of no arguments used by \\[find-tag] to pick a default tag.
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
87 If nil, and the symbol that is the value of `major-mode'
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
88 has a `find-tag-default-function' property (see `put'), that is used.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
89 Otherwise, `find-tag-default' is used.")
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
91 (defvar default-tags-table-function nil
5174
bb40928e9e47 (tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5079
diff changeset
92 "If non-nil, a function to choose a default tags file for a buffer.
bb40928e9e47 (tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5079
diff changeset
93 This function receives no arguments and should return the default
bb40928e9e47 (tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5079
diff changeset
94 tags table file to use for the current buffer.")
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
95
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
96 (defvar tags-location-stack nil
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
97 "List of markers which are locations visited by \\[find-tag].
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
98 Pop back to the last location with \\[negative-argument] \\[find-tag].")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
99
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
100 ;; Tags table state.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
101 ;; These variables are local in tags table buffers.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
102
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
103 (defvar tags-table-files nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
104 "List of file names covered by current tags table.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
105 nil means it has not yet been computed; use `tags-table-files' to do so.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
106
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
107 (defvar tags-completion-table nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
108 "Alist of tag names defined in current tags table.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
109
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
110 (defvar tags-included-tables nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
111 "List of tags tables included by the current tags table.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
112
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
113 (defvar next-file-list nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
114 "List of files for \\[next-file] to process.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
115
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
116 ;; Hooks for file formats.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
117
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
118 (defvar tags-table-format-hooks '(etags-recognize-tags-table
824
b7ba8d69e136 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 817
diff changeset
119 recognize-empty-tags-table)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
120 "List of functions to be called in a tags table buffer to identify
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
121 the type of tags table. The functions are called in order, with no arguments,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
122 until one returns non-nil. The function should make buffer-local bindings
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
123 of the format-parsing tags function variables if successful.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
124
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
125 (defvar file-of-tag-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
126 "Function to do the work of `file-of-tag' (which see).")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
127 (defvar tags-table-files-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
128 "Function to do the work of `tags-table-files' (which see).")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
129 (defvar tags-completion-table-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
130 "Function to build the tags-completion-table.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
131 (defvar snarf-tag-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
132 "Function to get info about a matched tag for `goto-tag-location-function'.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
133 (defvar goto-tag-location-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
134 "Function of to go to the location in the buffer specified by a tag.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
135 One argument, the tag info returned by `snarf-tag-function'.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
136 (defvar find-tag-regexp-search-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
137 "Search function passed to `find-tag-in-order' for finding a regexp tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
138 (defvar find-tag-regexp-tag-order nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
139 "Tag order passed to `find-tag-in-order' for finding a regexp tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
140 (defvar find-tag-regexp-next-line-after-failure-p nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
141 "Flag passed to `find-tag-in-order' for finding a regexp tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
142 (defvar find-tag-search-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
143 "Search function passed to `find-tag-in-order' for finding a tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
144 (defvar find-tag-tag-order nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
145 "Tag order passed to `find-tag-in-order' for finding a tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
146 (defvar find-tag-next-line-after-failure-p nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
147 "Flag passed to `find-tag-in-order' for finding a tag.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
148 (defvar list-tags-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
149 "Function to do the work of `list-tags' (which see).")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
150 (defvar tags-apropos-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
151 "Function to do the work of `tags-apropos' (which see).")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
152 (defvar tags-included-tables-function nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
153 "Function to do the work of `tags-included-tables' (which see).")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
154 (defvar verify-tags-table-function nil
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3548
diff changeset
155 "Function to return t iff the current buffer contains a valid
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
156 \(already initialized\) tags file.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
157
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
158 ;; Initialize the tags table in the current buffer.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
159 ;; Returns non-nil iff it is a valid tags table. On
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
160 ;; non-nil return, the tags table state variable are
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
161 ;; made buffer-local and initialized to nil.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
162 (defun initialize-new-tags-table ()
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
163 (set (make-local-variable 'tags-table-files) nil)
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
164 (set (make-local-variable 'tags-completion-table) nil)
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
165 (set (make-local-variable 'tags-included-tables) nil)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
166 ;; Value is t if we have found a valid tags table buffer.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
167 (let ((hooks tags-table-format-hooks))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
168 (while (and hooks
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
169 (not (funcall (car hooks))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
170 (setq hooks (cdr hooks)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
171 hooks))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
172
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
173 ;;;###autoload
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
174 (defun visit-tags-table (file &optional local)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
175 "Tell tags commands to use tags table file FILE.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176 FILE should be the name of a file created with the `etags' program.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
177 A directory name is ok too; it means file TAGS in that directory.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
178
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
179 Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
180 With a prefix arg, set the buffer-local value instead.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
181 When you find a tag with \\[find-tag], the buffer it finds the tag
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
182 in is given a local value of this variable which is the name of the tags
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
183 file the tag was in."
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
184 (interactive (list (read-file-name "Visit tags table: (default TAGS) "
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 default-directory
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
186 (expand-file-name "TAGS"
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
187 default-directory)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
188 t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
189 current-prefix-arg))
7287
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
190 (or (stringp file) (signal 'wrong-type-argument (list 'stringp file)))
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
191 ;; Bind tags-file-name so we can control below whether the local or
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
192 ;; global value gets set. Calling visit-tags-table-buffer will
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
193 ;; initialize a buffer for the file and set tags-file-name to the
10661
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
194 ;; Calling visit-tags-table-buffer with tags-file-name set to FILE will
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
195 ;; initialize a buffer for FILE and set tags-file-name to the
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
196 ;; fully-expanded name.
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
197 (let ((tags-file-name file))
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
198 (save-excursion
7287
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
199 (or (visit-tags-table-buffer file)
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
200 (signal 'file-error (list "Visiting tags table"
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
201 "file does not exist"
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
202 file)))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
203 ;; Set FILE to the expanded name.
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
204 (setq file tags-file-name)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
205 (if local
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
206 ;; Set the local value of tags-file-name.
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
207 (set (make-local-variable 'tags-file-name) file)
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
208 ;; Set the global value of tags-file-name.
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
209 (setq-default tags-file-name file)))
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
210
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
211 (defun tags-table-check-computed-list ()
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
212 "Compute `tags-table-computed-list' from `tags-table-list' if necessary."
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
213 (let ((expanded-list (mapcar 'tags-expand-table-name tags-table-list)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
214 (or (equal tags-table-computed-list-for expanded-list)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
215 ;; The list (or default-directory) has changed since last computed.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
216 (let* ((compute-for (mapcar 'copy-sequence expanded-list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
217 (tables (copy-sequence compute-for)) ;Mutated in the loop.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
218 (computed nil)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
219 table-buffer)
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
220
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
221 (while tables
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
222 (setq computed (cons (car tables) computed)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
223 table-buffer (get-file-buffer (car tables)))
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
224 (if (and table-buffer
9020
857ced7767c0 (tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents: 8973
diff changeset
225 ;; There is a buffer visiting the file. Now make sure
857ced7767c0 (tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents: 8973
diff changeset
226 ;; it is initialized as a tag table buffer.
857ced7767c0 (tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents: 8973
diff changeset
227 (save-excursion
857ced7767c0 (tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents: 8973
diff changeset
228 (tags-verify-table (buffer-file-name table-buffer))))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
229 (save-excursion
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
230 (set-buffer table-buffer)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
231 (if (tags-included-tables)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
232 ;; Insert the included tables into the list we
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
233 ;; are processing.
13165
e5431229a09f (tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents: 12942
diff changeset
234 (setcdr tables (nconc (mapcar 'tags-expand-table-name
e5431229a09f (tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents: 12942
diff changeset
235 (tags-included-tables))
e5431229a09f (tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents: 12942
diff changeset
236 (cdr tables)))))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
237 ;; This table is not in core yet. Insert a placeholder
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
238 ;; saying we must read it into core to check for included
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
239 ;; tables before searching the next table in the list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
240 (setq computed (cons t computed)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
241 (setq tables (cdr tables)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
242
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
243 ;; Record the tags-table-list value (and the context of the
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
244 ;; current directory) we computed from.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
245 (setq tags-table-computed-list-for compute-for
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
246 tags-table-computed-list (nreverse computed))))))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
247
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
248 ;; Extend `tags-table-computed-list' to remove the first `t' placeholder.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
249 ;; An element of the list that is `t' is a placeholder indicating that the
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
250 ;; preceding element is a table that has not been read into core and might
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
251 ;; contain included tables to search. On return, the first placeholder
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
252 ;; element will be gone and the element before it read into core and its
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
253 ;; included tables inserted into the list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
254 (defun tags-table-extend-computed-list ()
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
255 (let ((list tags-table-computed-list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
256 (while (not (eq (nth 1 list) t))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
257 (setq list (cdr list)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
258 (save-excursion
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
259 (if (tags-verify-table (car list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
260 ;; We are now in the buffer visiting (car LIST). Extract its
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
261 ;; list of included tables and insert it into the computed list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
262 (let ((tables (tags-included-tables))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
263 (computed nil)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
264 table-buffer)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
265 (while tables
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
266 (setq computed (cons (car tables) computed)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
267 table-buffer (get-file-buffer (car tables)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
268 (if table-buffer
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
269 (save-excursion
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
270 (set-buffer table-buffer)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
271 (if (tags-included-tables)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
272 ;; Insert the included tables into the list we
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
273 ;; are processing.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
274 (setcdr tables (append (tags-included-tables)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
275 tables))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
276 ;; This table is not in core yet. Insert a placeholder
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
277 ;; saying we must read it into core to check for included
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
278 ;; tables before searching the next table in the list.
8623
428abda49671 (tags-table-extend-computed-list): In loop processing list of included
Roland McGrath <roland@gnu.org>
parents: 8509
diff changeset
279 (setq computed (cons t computed)))
428abda49671 (tags-table-extend-computed-list): In loop processing list of included
Roland McGrath <roland@gnu.org>
parents: 8509
diff changeset
280 (setq tables (cdr tables)))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
281 (setq computed (nreverse computed))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
282 ;; COMPUTED now contains the list of included tables (and
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
283 ;; tables included by them, etc.). Now splice this into the
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
284 ;; current list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
285 (setcdr list (nconc computed (cdr (cdr list)))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
286 ;; It was not a valid table, so just remove the following placeholder.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
287 (setcdr list (cdr (cdr list)))))))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
288
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
289 ;; Expand tags table name FILE into a complete file name.
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
290 (defun tags-expand-table-name (file)
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
291 (setq file (expand-file-name file))
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
292 (if (file-directory-p file)
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
293 (expand-file-name "TAGS" file)
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
294 file))
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
295
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
296 ;; Like member, but comparison is done after tags-expand-table-name on both
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
297 ;; sides and elements of LIST that are t are skipped.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
298 (defun tags-table-list-member (file list)
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
299 (setq file (tags-expand-table-name file))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
300 (while (and list
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
301 (or (eq (car list) t)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
302 (not (string= file (tags-expand-table-name (car list))))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
303 (setq list (cdr list)))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
304 list)
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
305
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
306 (defun tags-verify-table (file)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
307 "Read FILE into a buffer and verify that it is a valid tags table.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
308 Sets the current buffer to one visiting FILE (if it exists).
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
309 Returns non-nil iff it is a valid table."
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
310 (if (get-file-buffer file)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
311 ;; The file is already in a buffer. Check for the visited file
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
312 ;; having changed since we last used it.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
313 (let (win)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
314 (set-buffer (get-file-buffer file))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
315 (setq win (or verify-tags-table-function (initialize-new-tags-table)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
316 (if (or (verify-visited-file-modtime (current-buffer))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
317 (not (yes-or-no-p
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
318 (format "Tags file %s has changed, read new contents? "
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
319 file))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
320 (and win (funcall verify-tags-table-function))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
321 (revert-buffer t t)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
322 (initialize-new-tags-table)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
323 (and (file-exists-p file)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
324 (progn
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
325 (set-buffer (find-file-noselect file))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
326 (or (string= file buffer-file-name)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
327 ;; find-file-noselect has changed the file name.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
328 ;; Propagate the change to tags-file-name and tags-table-list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
329 (let ((tail (member file tags-table-list)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
330 (if tail
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
331 (setcar tail buffer-file-name))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
332 (if (eq file tags-file-name)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
333 (setq tags-file-name buffer-file-name))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
334 (initialize-new-tags-table)))))
4391
2f181ad12c41 (visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents: 4389
diff changeset
335
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
336 ;; Subroutine of visit-tags-table-buffer. Search the current tags tables
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
337 ;; for one that has tags for THIS-FILE (or that includes a table that
8040
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
338 ;; does). Return the name of the first table table listing THIS-FILE; if
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
339 ;; the table is one included by another table, it is the master table that
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
340 ;; we return. If CORE-ONLY is non-nil, check only tags tables that are
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
341 ;; already in buffers--don't visit any new files.
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
342 (defun tags-table-including (this-file core-only)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
343 (let ((tables tags-table-computed-list)
7211
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
344 (found nil))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
345 ;; Loop over the list, looking for a table containing tags for THIS-FILE.
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
346 (while (and (not found)
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
347 tables)
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
348
8509
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
349 (if core-only
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
350 ;; Skip tables not in core.
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
351 (while (eq (nth 1 tables) t)
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
352 (setq tables (cdr (cdr tables))))
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
353 (if (eq (nth 1 tables) t)
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
354 ;; This table has not been read into core yet. Read it in now.
be778f8834a5 (tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents: 8456
diff changeset
355 (tags-table-extend-computed-list)))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
356
8014
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
357 (if tables
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
358 ;; Select the tags table buffer and get the file list up to date.
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
359 (let ((tags-file-name (car tables)))
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
360 (visit-tags-table-buffer 'same)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
361 (if (member this-file (mapcar 'expand-file-name
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
362 (tags-table-files)))
8014
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
363 ;; Found it.
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
364 (setq found tables))))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
365 (setq tables (cdr tables)))
8014
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
366 (if found
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
367 ;; Now determine if the table we found was one included by another
9928
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
368 ;; table, not explicitly listed. We do this by checking each
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
369 ;; element of the computed list to see if it appears in the user's
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
370 ;; explicit list; the last element we will check is FOUND itself.
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
371 ;; Then we return the last one which did in fact appear in
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
372 ;; tags-table-list.
8014
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
373 (let ((could-be nil)
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
374 (elt tags-table-computed-list))
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
375 (while (not (eq elt (cdr found)))
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
376 (if (tags-table-list-member (car elt) tags-table-list)
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
377 ;; This table appears in the user's list, so it could be
0d4288705550 (tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents: 7934
diff changeset
378 ;; the one which includes the table we found.
9928
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
379 (setq could-be (car elt)))
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
380 (setq elt (cdr elt))
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
381 (if (eq t (car elt))
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
382 (setq elt (cdr elt))))
8015
3d6ee294a710 Fix bits of last change lost in Emacs crash.
Roland McGrath <roland@gnu.org>
parents: 8014
diff changeset
383 ;; The last element we found in the computed list before FOUND
3d6ee294a710 Fix bits of last change lost in Emacs crash.
Roland McGrath <roland@gnu.org>
parents: 8014
diff changeset
384 ;; that appears in the user's list will be the table that
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
385 ;; included the one we found.
9928
d49a23c098df (tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents: 9631
diff changeset
386 could-be))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
387
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
388 ;; Subroutine of visit-tags-table-buffer. Move tags-table-list-pointer
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
389 ;; along and set tags-file-name. Returns nil when out of tables.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
390 (defun tags-next-table ()
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
391 ;; If there is a placeholder element next, compute the list to replace it.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
392 (while (eq (nth 1 tags-table-list-pointer) t)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
393 (tags-table-extend-computed-list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
394
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
395 ;; Go to the next table in the list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
396 (setq tags-table-list-pointer (cdr tags-table-list-pointer))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
397 (or tags-table-list-pointer
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
398 ;; Wrap around.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
399 (setq tags-table-list-pointer tags-table-computed-list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
400
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
401 (if (eq tags-table-list-pointer tags-table-list-started-at)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
402 ;; We have come full circle. No more tables.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
403 (setq tags-table-list-pointer nil)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
404 ;; Set tags-file-name to the name from the list. It is already expanded.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
405 (setq tags-file-name (car tags-table-list-pointer))))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
406
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
407 (defun visit-tags-table-buffer (&optional cont)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
408 "Select the buffer containing the current tags table.
7287
0e89007c19c6 (visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents: 7284
diff changeset
409 If optional arg is a string, visit that file as a tags table.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
410 If optional arg is t, visit the next table in `tags-table-list'.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
411 If optional arg is the atom `same', don't look for a new table;
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
412 just select the buffer visiting `tags-file-name'.
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
413 If arg is nil or absent, choose a first buffer from information in
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
414 `tags-file-name', `tags-table-list', `tags-table-list-pointer'.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
415 Returns t if it visits a tags table, or nil if there are no more in the list."
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
416
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
417 ;; Set tags-file-name to the tags table file we want to visit.
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
418 (cond ((eq cont 'same)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
419 ;; Use the ambient value of tags-file-name.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
420 (or tags-file-name
14420
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
421 (error "%s"
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
422 (substitute-command-keys
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
423 (concat "No tags table in use! "
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
424 "Use \\[visit-tags-table] to select one.")))))
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
425
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
426 ((eq t cont)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
427 ;; Find the next table.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
428 (if (tags-next-table)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
429 ;; Skip over nonexistent files.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
430 (while (and (not (or (get-file-buffer tags-file-name)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
431 (file-exists-p tags-file-name)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
432 (tags-next-table)))))
7211
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
433
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
434 (t
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
435 ;; Pick a table out of our hat.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
436 (tags-table-check-computed-list) ;Get it up to date, we might use it.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
437 (setq tags-file-name
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
438 (or
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
439 ;; If passed a string, use that.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
440 (if (stringp cont)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
441 (prog1 cont
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
442 (setq cont nil)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
443 ;; First, try a local variable.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
444 (cdr (assq 'tags-file-name (buffer-local-variables)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
445 ;; Second, try a user-specified function to guess.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
446 (and default-tags-table-function
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
447 (funcall default-tags-table-function))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
448 ;; Third, look for a tags table that contains tags for the
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
449 ;; current buffer's file. If one is found, the lists will
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
450 ;; be frobnicated, and CONT will be set non-nil so we don't
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
451 ;; do it below.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
452 (and buffer-file-name
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
453 (or
8040
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
454 ;; First check only tables already in buffers.
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
455 (tags-table-including buffer-file-name t)
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
456 ;; Since that didn't find any, now do the
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
457 ;; expensive version: reading new files.
b35d46349f46 (visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents: 8015
diff changeset
458 (tags-table-including buffer-file-name nil)))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
459 ;; Fourth, use the user variable tags-file-name, if it is
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
460 ;; not already in the current list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
461 (and tags-file-name
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
462 (not (tags-table-list-member tags-file-name
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
463 tags-table-computed-list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
464 tags-file-name)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
465 ;; Fifth, use the user variable giving the table list.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
466 ;; Find the first element of the list that actually exists.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
467 (let ((list tags-table-list)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
468 file)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
469 (while (and list
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
470 (setq file (tags-expand-table-name (car list)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
471 (not (get-file-buffer file))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
472 (not (file-exists-p file)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
473 (setq list (cdr list)))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
474 (car list))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
475 ;; Finally, prompt the user for a file name.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
476 (expand-file-name
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
477 (read-file-name "Visit tags table: (default TAGS) "
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
478 default-directory
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
479 "TAGS"
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
480 t))))))
1138
f2897f71f361 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1136
diff changeset
481
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
482 ;; Expand the table name into a full file name.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
483 (setq tags-file-name (tags-expand-table-name tags-file-name))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
484
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
485 (if (and (eq cont t)
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
486 (null tags-table-list-pointer))
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
487 ;; All out of tables.
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
488 nil
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
489
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
490 ;; Verify that tags-file-name names a valid tags table.
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
491 ;; Bind another variable with the value of tags-file-name
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
492 ;; before we switch buffers, in case tags-file-name is buffer-local.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
493 (let ((curbuf (current-buffer))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
494 (local-tags-file-name tags-file-name))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
495 (if (tags-verify-table local-tags-file-name)
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
496
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
497 ;; We have a valid tags table.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
498 (progn
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
499 ;; Bury the tags table buffer so it
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
500 ;; doesn't get in the user's way.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
501 (bury-buffer (current-buffer))
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
502
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
503 ;; If this was a new table selection (CONT is nil), make
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
504 ;; sure tags-table-list includes the chosen table, and
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
505 ;; update the list pointer variables.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
506 (or cont
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
507 ;; Look in the list for the table we chose.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
508 (let ((found (tags-table-list-member
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
509 local-tags-file-name
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
510 tags-table-computed-list)))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
511 (if found
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
512 ;; There it is. Just switch to it.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
513 (setq tags-table-list-pointer found
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
514 tags-table-list-started-at found)
4391
2f181ad12c41 (visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents: 4389
diff changeset
515
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
516 ;; The table is not in the current set.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
517 ;; Try to find it in another previously used set.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
518 (let ((sets tags-table-set-list))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
519 (while (and sets
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
520 (not (tags-table-list-member
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
521 local-tags-file-name
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
522 (car sets))))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
523 (setq sets (cdr sets)))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
524 (if sets
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
525 ;; Found in some other set. Switch to that set.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
526 (progn
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
527 (or (memq tags-table-list tags-table-set-list)
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
528 ;; Save the current list.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
529 (setq tags-table-set-list
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
530 (cons tags-table-list
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
531 tags-table-set-list)))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
532 (setq tags-table-list (car sets)))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
533
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
534 ;; Not found in any existing set.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
535 (if (and tags-table-list
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
536 (or (eq t tags-add-tables)
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
537 (and tags-add-tables
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
538 (y-or-n-p
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
539 (concat "Keep current list of "
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
540 "tags tables also? ")))))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
541 ;; Add it to the current list.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
542 (setq tags-table-list (cons local-tags-file-name
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
543 tags-table-list))
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
544
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
545 ;; Make a fresh list, and store the old one.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
546 (message "Starting a new list of tags tables")
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
547 (or (null tags-table-list)
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
548 (memq tags-table-list tags-table-set-list)
7211
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
549 (setq tags-table-set-list
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
550 (cons tags-table-list
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
551 tags-table-set-list)))
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
552 (setq tags-table-list (list local-tags-file-name))))
7211
b2485e94101a (tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents: 7112
diff changeset
553
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
554 ;; Recompute tags-table-computed-list.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
555 (tags-table-check-computed-list)
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
556 ;; Set the tags table list state variables to start
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
557 ;; over from tags-table-computed-list.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
558 (setq tags-table-list-started-at tags-table-computed-list
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
559 tags-table-list-pointer
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
560 tags-table-computed-list)))))
1156
2a92ddfaf6ba entered into RCS
Roland McGrath <roland@gnu.org>
parents: 1152
diff changeset
561
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
562 ;; Return of t says the tags table is valid.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
563 t)
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
564
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
565 ;; The buffer was not valid. Don't use it again.
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
566 (set-buffer curbuf)
7934
b5e9b6a00f5d (tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents: 7904
diff changeset
567 (kill-local-variable 'tags-file-name)
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
568 (if (eq local-tags-file-name tags-file-name)
8116
67c8a970fd4d (visit-tags-table-buffer): Move error call into scope of `file'.
Richard M. Stallman <rms@gnu.org>
parents: 8082
diff changeset
569 (setq tags-file-name nil))
8297
80d4bf018aec (visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents: 8187
diff changeset
570 (error "File %s is not a valid tags table" local-tags-file-name)))))
9525
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
571
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
572 (defun tags-reset-tags-tables ()
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
573 "Reset tags state to cancel effect of any previous \\[visit-tags-table]
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
574 or \\[find-tag]."
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
575 (interactive)
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
576 (setq tags-file-name nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
577 tags-location-stack nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
578 tags-table-list nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
579 tags-table-computed-list nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
580 tags-table-computed-list-for nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
581 tags-table-list-pointer nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
582 tags-table-list-started-at nil
6cd679419a9c (tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents: 9152
diff changeset
583 tags-table-set-list nil))
1397
d469afe703c4 (visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents: 1156
diff changeset
584
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585 (defun file-of-tag ()
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 "Return the file name of the file whose tags point is within.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
587 Assumes the tags table is the current buffer.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
588 File name returned is relative to tags table file's directory."
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
589 (funcall file-of-tag-function))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
590
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
591 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
592 (defun tags-table-files ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
593 "Return a list of files in the current tags table.
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
594 Assumes the tags table is the current buffer. The file names are returned
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
595 as they appeared in the `etags' command that created the table, usually
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
596 without directory names."
1397
d469afe703c4 (visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents: 1156
diff changeset
597 (or tags-table-files
d469afe703c4 (visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents: 1156
diff changeset
598 (setq tags-table-files
d469afe703c4 (visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents: 1156
diff changeset
599 (funcall tags-table-files-function))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
600
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
601 (defun tags-included-tables ()
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
602 "Return a list of tags tables included by the current table.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
603 Assumes the tags table is the current buffer."
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
604 (or tags-included-tables
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
605 (setq tags-included-tables (funcall tags-included-tables-function))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
606
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
607 ;; Build tags-completion-table on demand. The single current tags table
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
608 ;; and its included tags tables (and their included tables, etc.) have
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
609 ;; their tags included in the completion table.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
610 (defun tags-completion-table ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
611 (or tags-completion-table
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
612 (condition-case ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
613 (prog2
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
614 (message "Making tags completion table for %s..." buffer-file-name)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
615 (let ((included (tags-included-tables))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
616 (table (funcall tags-completion-table-function)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
617 (save-excursion
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
618 ;; Iterate over the list of included tables, and combine each
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
619 ;; included table's completion obarray to the parent obarray.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
620 (while included
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
621 ;; Visit the buffer.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
622 (let ((tags-file-name (car included)))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
623 (visit-tags-table-buffer 'same))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
624 ;; Recurse in that buffer to compute its completion table.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
625 (if (tags-completion-table)
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
626 ;; Combine the tables.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
627 (mapatoms (function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
628 (lambda (sym)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
629 (intern (symbol-name sym) table)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
630 tags-completion-table))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
631 (setq included (cdr included))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
632 (setq tags-completion-table table))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
633 (message "Making tags completion table for %s...done"
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
634 buffer-file-name))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
635 (quit (message "Tags completion table construction aborted.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
636 (setq tags-completion-table nil)))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
637
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
638 ;; Completion function for tags. Does normal try-completion,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
639 ;; but builds tags-completion-table on demand.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
640 (defun tags-complete-tag (string predicate what)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
641 (save-excursion
5079
1d253bc912d8 (tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents: 4940
diff changeset
642 ;; If we need to ask for the tag table, allow that.
1d253bc912d8 (tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents: 4940
diff changeset
643 (let ((enable-recursive-minibuffers t))
1d253bc912d8 (tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents: 4940
diff changeset
644 (visit-tags-table-buffer))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
645 (if (eq what t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
646 (all-completions string (tags-completion-table) predicate)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
647 (try-completion string (tags-completion-table) predicate))))
1397
d469afe703c4 (visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents: 1156
diff changeset
648
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
649 ;; Return a default tag to search for, based on the text at point.
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
650 (defun find-tag-default ()
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
651 (save-excursion
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 (while (looking-at "\\sw\\|\\s_")
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653 (forward-char 1))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
654 (if (or (re-search-backward "\\sw\\|\\s_"
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
655 (save-excursion (beginning-of-line) (point))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
656 t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
657 (re-search-forward "\\(\\sw\\|\\s_\\)+"
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
658 (save-excursion (end-of-line) (point))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
659 t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
660 (progn (goto-char (match-end 0))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 (buffer-substring (point)
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 (progn (forward-sexp -1)
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 (while (looking-at "\\s'")
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664 (forward-char 1))
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 (point))))
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 nil)))
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
667
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
668 ;; Read a tag name from the minibuffer with defaulting and completion.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 (defun find-tag-tag (string)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
670 (let* ((default (funcall (or find-tag-default-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
671 (get major-mode 'find-tag-default-function)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
672 'find-tag-default)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
673 (spec (completing-read (if default
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
674 (format "%s(default %s) " string default)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
675 string)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
676 'tags-complete-tag)))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
677 (if (equal spec "")
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
678 (or default (error "There is no default tag"))
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
679 spec)))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680
852
06165faefe70 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 846
diff changeset
681 (defvar last-tag nil
06165faefe70 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 846
diff changeset
682 "Last tag found by \\[find-tag].")
06165faefe70 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 846
diff changeset
683
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
684 ;; Get interactive args for find-tag{-noselect,-other-window,-regexp}.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
685 (defun find-tag-interactive (prompt &optional no-default)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
686 (if current-prefix-arg
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
687 (list nil (if (< (prefix-numeric-value current-prefix-arg) 0)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
688 '-
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
689 t))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
690 (list (if no-default
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
691 (read-string prompt)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
692 (find-tag-tag prompt)))))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
693
7904
c2259f58ef7e (find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7843
diff changeset
694 (defvar find-tag-history nil)
c2259f58ef7e (find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7843
diff changeset
695
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
696 ;;;###autoload
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
697 (defun find-tag-noselect (tagname &optional next-p regexp-p)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
698 "Find tag (in current tags table) whose name contains TAGNAME.
1555
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
699 Returns the buffer containing the tag's definition and moves its point there,
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
700 but does not select the buffer.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
701 The default for TAGNAME is the expression in the buffer near point.
474
c3bbd755b7da *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 452
diff changeset
702
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
703 If second arg NEXT-P is t (interactively, with prefix arg), search for
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
704 another tag that matches the last tagname or regexp used. When there are
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
705 multiple matches for a tag, more exact matches are found first. If NEXT-P
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
706 is the atom `-' (interactively, with prefix arg that is a negative number
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
707 or just \\[negative-argument]), pop back to the previous tag gone to.
450
0bac8c701777 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 449
diff changeset
708
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
709 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
711 See documentation of variable `tags-file-name'."
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
712 (interactive (find-tag-interactive "Find tag: "))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
713
7904
c2259f58ef7e (find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7843
diff changeset
714 (setq find-tag-history (cons tagname find-tag-history))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
715 ;; Save the current buffer's value of `find-tag-hook' before selecting the
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
716 ;; tags table buffer.
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
717 (let ((local-find-tag-hook find-tag-hook))
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
718 (if (eq '- next-p)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
719 ;; Pop back to a previous location.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
720 (if (null tags-location-stack)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
721 (error "No previous tag locations")
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
722 (let ((marker (car tags-location-stack)))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
723 ;; Pop the stack.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
724 (setq tags-location-stack (cdr tags-location-stack))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
725 (prog1
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
726 ;; Move to the saved location.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
727 (set-buffer (marker-buffer marker))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
728 (goto-char (marker-position marker))
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3548
diff changeset
729 ;; Kill that marker so it doesn't slow down editing.
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
730 (set-marker marker nil nil)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
731 ;; Run the user's hook. Do we really want to do this for pop?
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
732 (run-hooks 'local-find-tag-hook))))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
733 (if next-p
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
734 ;; Find the same table we last used.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
735 (visit-tags-table-buffer 'same)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
736 ;; Pick a table to use.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
737 (visit-tags-table-buffer)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
738 ;; Record TAGNAME for a future call with NEXT-P non-nil.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
739 (setq last-tag tagname))
8973
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
740 ;; Record the location so we can pop back to it later.
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
741 (let ((marker (make-marker)))
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
742 (save-excursion
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
743 (set-buffer
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
744 ;; find-tag-in-order does the real work.
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
745 (find-tag-in-order
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
746 (if next-p last-tag tagname)
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
747 (if regexp-p
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
748 find-tag-regexp-search-function
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
749 find-tag-search-function)
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
750 (if regexp-p
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
751 find-tag-regexp-tag-order
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
752 find-tag-tag-order)
8973
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
753 (if regexp-p
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
754 find-tag-regexp-next-line-after-failure-p
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
755 find-tag-next-line-after-failure-p)
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
756 (if regexp-p "matching" "containing")
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
757 (not next-p)))
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
758 (set-marker marker (point))
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
759 (run-hooks 'local-find-tag-hook)
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
760 (setq tags-location-stack
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
761 (cons marker tags-location-stack))
99d8538efe2f (find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents: 8623
diff changeset
762 (current-buffer))))))
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
763
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
764 ;;;###autoload
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
765 (defun find-tag (tagname &optional next-p regexp-p)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
766 "Find tag (in current tags table) whose name contains TAGNAME.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
767 Select the buffer containing the tag's definition, and move point there.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
768 The default for TAGNAME is the expression in the buffer around or before point.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
770 If second arg NEXT-P is t (interactively, with prefix arg), search for
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
771 another tag that matches the last tagname or regexp used. When there are
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
772 multiple matches for a tag, more exact matches are found first. If NEXT-P
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
773 is the atom `-' (interactively, with prefix arg that is a negative number
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
774 or just \\[negative-argument]), pop back to the previous tag gone to.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
775
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
776 See documentation of variable `tags-file-name'."
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
777 (interactive (find-tag-interactive "Find tag: "))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
778 (switch-to-buffer (find-tag-noselect tagname next-p regexp-p)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
779 ;;;###autoload (define-key esc-map "." 'find-tag)
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 662
diff changeset
781 ;;;###autoload
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
782 (defun find-tag-other-window (tagname &optional next-p regexp-p)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
783 "Find tag (in current tags table) whose name contains TAGNAME.
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
784 Select the buffer containing the tag's definition in another window, and
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
785 move point there. The default for TAGNAME is the expression in the buffer
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
786 around or before point.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
787
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
788 If second arg NEXT-P is t (interactively, with prefix arg), search for
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
789 another tag that matches the last tagname or regexp used. When there are
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
790 multiple matches for a tag, more exact matches are found first. If NEXT-P
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
791 is negative (interactively, with prefix arg that is a negative number or
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
792 just \\[negative-argument]), pop back to the previous tag gone to.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
793
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
794 See documentation of variable `tags-file-name'."
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
795 (interactive (find-tag-interactive "Find tag other window: "))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
796
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
797 ;; This hair is to deal with the case where the tag is found in the
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
798 ;; selected window's buffer; without the hair, point is moved in both
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
799 ;; windows. To prevent this, we save the selected window's point before
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
800 ;; doing find-tag-noselect, and restore it after.
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
801 (let* ((window-point (window-point (selected-window)))
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
802 (tagbuf (find-tag-noselect tagname next-p regexp-p))
1976
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
803 (tagpoint (progn (set-buffer tagbuf) (point))))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
804 (set-window-point (prog1
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
805 (selected-window)
1976
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
806 (switch-to-buffer-other-window tagbuf)
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
807 ;; We have to set this new window's point; it
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
808 ;; might already have been displaying a
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
809 ;; different portion of tagbuf, in which case
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
810 ;; switch-to-buffer-other-window doesn't set
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
811 ;; the window's point from the buffer.
eda7eec8f8ad * etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents: 1816
diff changeset
812 (set-window-point (selected-window) tagpoint))
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
813 window-point)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
814 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
815
804
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
816 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
817 (defun find-tag-other-frame (tagname &optional next-p)
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
818 "Find tag (in current tags table) whose name contains TAGNAME.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
819 Select the buffer containing the tag's definition in another frame, and
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
820 move point there. The default for TAGNAME is the expression in the buffer
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
821 around or before point.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
822
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
823 If second arg NEXT-P is t (interactively, with prefix arg), search for
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
824 another tag that matches the last tagname or regexp used. When there are
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
825 multiple matches for a tag, more exact matches are found first. If NEXT-P
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
826 is negative (interactively, with prefix arg that is a negative number or
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
827 just \\[negative-argument]), pop back to the previous tag gone to.
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 662
diff changeset
828
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
829 See documentation of variable `tags-file-name'."
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
830 (interactive (find-tag-interactive "Find tag other frame: "))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
831 (let ((pop-up-frames t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
832 (find-tag-other-window tagname next-p)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
833 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame)
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
834
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
835 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
836 (defun find-tag-regexp (regexp &optional next-p other-window)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
837 "Find tag (in current tags table) whose name matches REGEXP.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
838 Select the buffer containing the tag's definition and move point there.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
839
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
840 If second arg NEXT-P is t (interactively, with prefix arg), search for
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
841 another tag that matches the last tagname or regexp used. When there are
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
842 multiple matches for a tag, more exact matches are found first. If NEXT-P
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
843 is negative (interactively, with prefix arg that is a negative number or
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
844 just \\[negative-argument]), pop back to the previous tag gone to.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
845
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
846 If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
847
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
848 See documentation of variable `tags-file-name'."
2590
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
849 (interactive (find-tag-interactive "Find tag regexp: " t))
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
850 ;; We go through find-tag-other-window to do all the display hair there.
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
851 (funcall (if other-window 'find-tag-other-window 'find-tag)
9dace03bd76c (find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents: 2448
diff changeset
852 regexp next-p t))
8187
9120cee6bfab (find-tag-regexp): Bind to C-M-..
Richard M. Stallman <rms@gnu.org>
parents: 8116
diff changeset
853 ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
854
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
855 ;; Internal tag finding function.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
856
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
857 ;; PATTERN is a string to pass to second arg SEARCH-FORWARD-FUNC, and to
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
858 ;; any member of the function list ORDER (third arg). If ORDER is nil,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
859 ;; use saved state to continue a previous search.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
860
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
861 ;; Fourth arg MATCHING is a string, an English '-ing' word, to be used in
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
862 ;; an error message.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
863
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
864 ;; Fifth arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
865 ;; point should be moved to the next line.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
866
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
867 ;; Algorithm is as follows. For each qualifier-func in ORDER, go to
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
868 ;; beginning of tags file, and perform inner loop: for each naive match for
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
869 ;; PATTERN found using SEARCH-FORWARD-FUNC, qualify the naive match using
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
870 ;; qualifier-func. If it qualifies, go to the specified line in the
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
871 ;; specified source file and return. Qualified matches are remembered to
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
872 ;; avoid repetition. State is saved so that the loop can be continued.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
873
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
874 (defvar tag-lines-already-matched nil) ;matches remembered here between calls
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
875
1555
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
876 (defun find-tag-in-order (pattern
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
877 search-forward-func
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
878 order
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
879 next-line-after-failure-p
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
880 matching
695c6eb2ff31 * etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1397
diff changeset
881 first-search)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
882 (let (file ;name of file containing tag
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
883 tag-info ;where to find the tag in FILE
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
884 (first-table t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
885 (tag-order order)
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
886 (match-marker (make-marker))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
887 goto-func
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
888 )
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
889 (save-excursion
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
890
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
891 (if first-search
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
892 ;; This is the start of a search for a fresh tag.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
893 ;; Clear the list of tags matched by the previous search.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
894 ;; find-tag-noselect has already put us in the first tags table
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
895 ;; buffer before we got called.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
896 (setq tag-lines-already-matched nil)
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
897 ;; Continuing to search for the tag specified last time.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
898 ;; tag-lines-already-matched lists locations matched in previous
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
899 ;; calls so we don't visit the same tag twice if it matches twice
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
900 ;; during two passes with different qualification predicates.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
901 ;; Switch to the current tags table buffer.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
902 (visit-tags-table-buffer 'same))
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
903
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
904 ;; Get a qualified match.
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
905 (catch 'qualified-match-found
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
906
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
907 ;; Iterate over the list of tags tables.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
908 (while (or first-table
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
909 (visit-tags-table-buffer t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
910
884
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
911 (and first-search first-table
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
912 ;; Start at beginning of tags file.
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
913 (goto-char (point-min)))
10661
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
914
884
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
915 (setq first-table nil)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
916
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
917 ;; Iterate over the list of ordering predicates.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
918 (while order
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
919 (while (funcall search-forward-func pattern nil t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
920 ;; Naive match found. Qualify the match.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
921 (and (funcall (car order) pattern)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
922 ;; Make sure it is not a previous qualified match.
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
923 (not (member (set-marker match-marker (save-excursion
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
924 (beginning-of-line)
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
925 (point)))
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
926 tag-lines-already-matched))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
927 (throw 'qualified-match-found nil))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
928 (if next-line-after-failure-p
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
929 (forward-line 1)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
930 ;; Try the next flavor of match.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
931 (setq order (cdr order))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
932 (goto-char (point-min)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
933 (setq order tag-order))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
934 ;; We throw out on match, so only get here if there were no matches.
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
935 ;; Clear out the markers we use to avoid duplicate matches so they
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
936 ;; don't slow down editting and are immediately available for GC.
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
937 (while tag-lines-already-matched
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
938 (set-marker (car tag-lines-already-matched) nil nil)
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
939 (setq tag-lines-already-matched (cdr tag-lines-already-matched)))
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
940 (set-marker match-marker nil nil)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
941 (error "No %stags %s %s" (if first-search "" "more ")
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
942 matching pattern))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
943
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
944 ;; Found a tag; extract location info.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
945 (beginning-of-line)
15352
e648211d5bac Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 14420
diff changeset
946 (setq tag-lines-already-matched (cons match-marker
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
947 tag-lines-already-matched))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
948 ;; Expand the filename, using the tags table buffer's default-directory.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
949 (setq file (expand-file-name (file-of-tag))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
950 tag-info (funcall snarf-tag-function))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
951
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
952 ;; Get the local value in the tags table buffer before switching buffers.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
953 (setq goto-func goto-tag-location-function)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
954
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
955 ;; Find the right line in the specified file.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
956 (set-buffer (find-file-noselect file))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
957 (widen)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
958 (push-mark)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
959 (funcall goto-func tag-info)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
960
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
961 ;; Return the buffer where the tag was found.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
962 (current-buffer))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
963
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
964 ;; `etags' TAGS file format support.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
965
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
966 ;; If the current buffer is a valid etags TAGS file, give it local values of
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
967 ;; the tags table format variables, and return non-nil.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
968 (defun etags-recognize-tags-table ()
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
969 (and (etags-verify-tags-table)
1136
4d4c177b980f *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1032
diff changeset
970 ;; It is annoying to flash messages on the screen briefly,
4d4c177b980f *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1032
diff changeset
971 ;; and this message is not useful. -- rms
4d4c177b980f *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 1032
diff changeset
972 ;; (message "%s is an `etags' TAGS file" buffer-file-name)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
973 (mapcar (function (lambda (elt)
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
974 (set (make-local-variable (car elt)) (cdr elt))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
975 '((file-of-tag-function . etags-file-of-tag)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
976 (tags-table-files-function . etags-tags-table-files)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
977 (tags-completion-table-function . etags-tags-completion-table)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
978 (snarf-tag-function . etags-snarf-tag)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
979 (goto-tag-location-function . etags-goto-tag-location)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
980 (find-tag-regexp-search-function . re-search-forward)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
981 (find-tag-regexp-tag-order . (tag-re-match-p))
3548
54b82ecde27b (etags-recognize-tags-table): Fix misspelling of
Richard M. Stallman <rms@gnu.org>
parents: 2768
diff changeset
982 (find-tag-regexp-next-line-after-failure-p . t)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
983 (find-tag-search-function . search-forward)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
984 (find-tag-tag-order . (tag-exact-file-name-match-p
10661
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
985 tag-exact-match-p
9021
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
986 tag-symbol-match-p
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
987 tag-word-match-p
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
988 tag-any-match-p))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
989 (find-tag-next-line-after-failure-p . nil)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
990 (list-tags-function . etags-list-tags)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
991 (tags-apropos-function . etags-tags-apropos)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
992 (tags-included-tables-function . etags-tags-included-tables)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
993 (verify-tags-table-function . etags-verify-tags-table)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
994 ))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
995
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
996 ;; Return non-nil iff the current buffer is a valid etags TAGS file.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
997 (defun etags-verify-tags-table ()
1723
4023bea27d64 (etags-verify-tags-table): Use eq instead of = in case char-after returns
Roland McGrath <roland@gnu.org>
parents: 1697
diff changeset
998 ;; Use eq instead of = in case char-after returns nil.
4023bea27d64 (etags-verify-tags-table): Use eq instead of = in case char-after returns
Roland McGrath <roland@gnu.org>
parents: 1697
diff changeset
999 (eq (char-after 1) ?\f))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1000
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1001 (defun etags-file-of-tag ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1002 (save-excursion
16367
168e1370e887 (etags-file-of-tag): Fix looking-at regexp.
Richard M. Stallman <rms@gnu.org>
parents: 16281
diff changeset
1003 (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n")
10458
b58df8437ea1 (etags-file-of-tag): Use a regexp search to find the file name,
Roland McGrath <roland@gnu.org>
parents: 10429
diff changeset
1004 (buffer-substring (match-beginning 1) (match-end 1))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1005
10680
69cbb0d5671d (etags-file-of-tag): Handle file name used as tag.
Richard M. Stallman <rms@gnu.org>
parents: 10661
diff changeset
1006
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1007 (defun etags-tags-completion-table ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1008 (let ((table (make-vector 511 0)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1009 (save-excursion
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1010 (goto-char (point-min))
2448
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1011 ;; This monster regexp matches an etags tag line.
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1012 ;; \1 is the string to match;
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1013 ;; \2 is not interesting;
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1014 ;; \3 is the guessed tag name; XXX guess should be better eg DEFUN
4407
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1015 ;; \4 is not interesting;
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1016 ;; \5 is the explicitly-specified tag name.
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1017 ;; \6 is the line to start searching at;
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1018 ;; \7 is the char to start searching at.
2448
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1019 (while (re-search-forward
10429
c37ee605ba79 (etags-tags-completion-table): Don't let match string contain a \177.
Roland McGrath <roland@gnu.org>
parents: 10402
diff changeset
1020 "^\\(\\([^\177]+[^-a-zA-Z0-9_$\177]+\\)?\\([-a-zA-Z0-9_$?:]+\\)\
c37ee605ba79 (etags-tags-completion-table): Don't let match string contain a \177.
Roland McGrath <roland@gnu.org>
parents: 10402
diff changeset
1021 \[^-a-zA-Z0-9_$?:\177]*\\)\177\\(\\([^\n\001]+\\)\001\\)?\
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1022 \\([0-9]+\\)?,\\([0-9]+\\)?\n"
2448
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1023 nil t)
4407
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1024 (intern (if (match-beginning 5)
2448
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1025 ;; There is an explicit tag name.
4407
5568d8e60c21 (etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents: 4391
diff changeset
1026 (buffer-substring (match-beginning 5) (match-end 5))
2448
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1027 ;; No explicit tag name. Best guess.
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1028 (buffer-substring (match-beginning 3) (match-end 3)))
0d7fdb12dcdb (etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents: 2445
diff changeset
1029 table)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1030 table))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1031
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1032 (defun etags-snarf-tag ()
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1033 (let (tag-text line startpos)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1034 (if (save-excursion
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1035 (forward-line -1)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1036 (looking-at "\f\n"))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1037 ;; The match was for a source file name, not any tag within a file.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1038 ;; Give text of t, meaning to go exactly to the location we specify,
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1039 ;; the beginning of the file.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1040 (setq tag-text t
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1041 line nil
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1042 startpos 1)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1043
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1044 ;; Find the end of the tag and record the whole tag text.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1045 (search-forward "\177")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1046 (setq tag-text (buffer-substring (1- (point))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1047 (save-excursion (beginning-of-line)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1048 (point))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1049 ;; Skip explicit tag name if present.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1050 (search-forward "\001" (save-excursion (forward-line 1) (point)) t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1051 (if (looking-at "[0-9]")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1052 (setq line (string-to-int (buffer-substring
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1053 (point)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1054 (progn (skip-chars-forward "0-9")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1055 (point))))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1056 (search-forward ",")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1057 (if (looking-at "[0-9]")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1058 (setq startpos (string-to-int (buffer-substring
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1059 (point)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1060 (progn (skip-chars-forward "0-9")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1061 (point)))))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1062 ;; Leave point on the next line of the tags file.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1063 (forward-line 1)
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1064 (cons tag-text (cons line startpos))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1065
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1066 ;; TAG-INFO is a cons (TEXT LINE . POSITION) where TEXT is the initial part
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1067 ;; of a line containing the tag and POSITION is the character position of
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1068 ;; TEXT within the file (starting from 1); LINE is the line number. If
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1069 ;; TEXT is t, it means the tag refers to exactly LINE or POSITION
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1070 ;; (whichever is present, LINE having preference, no searching. Either
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1071 ;; LINE or POSITION may be nil; POSITION is used if present. If the tag
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1072 ;; isn't exactly at the given position then look around that position using
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1073 ;; a search window which expands until it hits the start of file.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1074 (defun etags-goto-tag-location (tag-info)
6244
3ad3a0150b6d (etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents: 6140
diff changeset
1075 (let ((startpos (cdr (cdr tag-info)))
15770
17158dfe7765 (etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents: 15360
diff changeset
1076 (line (car (cdr tag-info)))
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1077 offset found pat)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1078 (if (eq (car tag-info) t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1079 ;; Direct file tag.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1080 (cond (line (goto-line line))
15770
17158dfe7765 (etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents: 15360
diff changeset
1081 (startpos (goto-char startpos))
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1082 (t (error "etags.el BUG: bogus direct file tag")))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1083 ;; This constant is 1/2 the initial search window.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1084 ;; There is no sense in making it too small,
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1085 ;; since just going around the loop once probably
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1086 ;; costs about as much as searching 2000 chars.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1087 (setq offset 1000
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1088 found nil
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1089 pat (concat (if (eq selective-display t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1090 "\\(^\\|\^m\\)" "^")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1091 (regexp-quote (car tag-info))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1092 ;; The character position in the tags table is 0-origin.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1093 ;; Convert it to a 1-origin Emacs character position.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1094 (if startpos (setq startpos (1+ startpos)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1095 ;; If no char pos was given, try the given line number.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1096 (or startpos
15770
17158dfe7765 (etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents: 15360
diff changeset
1097 (if line
17158dfe7765 (etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents: 15360
diff changeset
1098 (setq startpos (progn (goto-line line)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1099 (point)))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1100 (or startpos
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1101 (setq startpos (point-min)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1102 ;; First see if the tag is right at the specified location.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1103 (goto-char startpos)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1104 (setq found (looking-at pat))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1105 (while (and (not found)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1106 (progn
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1107 (goto-char (- startpos offset))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1108 (not (bobp))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1109 (setq found
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1110 (re-search-forward pat (+ startpos offset) t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1111 offset (* 3 offset))) ; expand search window
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1112 (or found
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1113 (re-search-forward pat nil t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1114 (error "Rerun etags: `%s' not found in %s"
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1115 pat buffer-file-name)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1116 ;; Position point at the right place
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1117 ;; if the search string matched an extra Ctrl-m at the beginning.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1118 (and (eq selective-display t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1119 (looking-at "\^m")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1120 (forward-char 1))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1121 (beginning-of-line)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1122
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1123 (defun etags-list-tags (file)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1124 (goto-char 1)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1125 (if (not (search-forward (concat "\f\n" file ",") nil t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1126 nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1127 (forward-line 1)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1128 (while (not (or (eobp) (looking-at "\f")))
6245
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1129 (let ((tag (buffer-substring (point)
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1130 (progn (skip-chars-forward "^\177")
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1131 (point)))))
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1132 (princ (if (looking-at "[^\n]+\001")
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1133 ;; There is an explicit tag name; use that.
15360
6243be11f0e3 (etags-list-tags): When there is an explicit tag name, skip the \177 before
Roland McGrath <roland@gnu.org>
parents: 15352
diff changeset
1134 (buffer-substring (1+ (point)) ;skip \177
6245
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1135 (progn (skip-chars-forward "^\001")
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1136 (point)))
c05d1d7bc400 (etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents: 6244
diff changeset
1137 tag)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1138 (terpri)
4940
2f65b0f9c6fc (etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents: 4857
diff changeset
1139 (forward-line 1))
2f65b0f9c6fc (etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents: 4857
diff changeset
1140 t))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1141
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1142 (defun etags-tags-apropos (string)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1143 (goto-char 1)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1144 (while (re-search-forward string nil t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1145 (beginning-of-line)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1146 (princ (buffer-substring (point)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1147 (progn (skip-chars-forward "^\177")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1148 (point))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1149 (terpri)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1150 (forward-line 1)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1151
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1152 (defun etags-tags-table-files ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1153 (let ((files nil)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1154 beg)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1155 (goto-char (point-min))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1156 (while (search-forward "\f\n" nil t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1157 (setq beg (point))
9579
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1158 (end-of-line)
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1159 (skip-chars-backward "^," beg)
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1160 (or (looking-at "include$")
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1161 (setq files (cons (buffer-substring beg (1- (point))) files))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1162 (nreverse files)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1163
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1164 (defun etags-tags-included-tables ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1165 (let ((files nil)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1166 beg)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1167 (goto-char (point-min))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1168 (while (search-forward "\f\n" nil t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1169 (setq beg (point))
9579
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1170 (end-of-line)
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1171 (skip-chars-backward "^," beg)
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1172 (if (looking-at "include$")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1173 ;; Expand in the default-directory of the tags table buffer.
9579
2a5d9c96525f (etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents: 9525
diff changeset
1174 (setq files (cons (expand-file-name (buffer-substring beg (1- (point))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1175 files))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1176 (nreverse files)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1177
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1178 ;; Empty tags file support.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1179
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
1180 ;; Recognize an empty file and give it local values of the tags table format
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
1181 ;; variables which do nothing.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1182 (defun recognize-empty-tags-table ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1183 (and (zerop (buffer-size))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1184 (mapcar (function (lambda (sym)
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
1185 (set (make-local-variable sym) 'ignore)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1186 '(tags-table-files-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1187 tags-completion-table-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1188 find-tag-regexp-search-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1189 find-tag-search-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1190 tags-apropos-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1191 tags-included-tables-function))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1192 (set (make-local-variable 'verify-tags-table-function)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1193 (function (lambda ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1194 (zerop (buffer-size)))))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1195
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1196 ;;; Match qualifier functions for tagnames.
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
1197 ;;; XXX these functions assume etags file format.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1198
884
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1199 ;; This might be a neat idea, but it's too hairy at the moment.
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1200 ;;(defmacro tags-with-syntax (&rest body)
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1201 ;; (` (let ((current (current-buffer))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1202 ;; (otable (syntax-table))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1203 ;; (buffer (find-file-noselect (file-of-tag)))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1204 ;; table)
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1205 ;; (unwind-protect
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1206 ;; (progn
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1207 ;; (set-buffer buffer)
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1208 ;; (setq table (syntax-table))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1209 ;; (set-buffer current)
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1210 ;; (set-syntax-table table)
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1211 ;; (,@ body))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1212 ;; (set-syntax-table otable)))))
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1213 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form))
877
e0dde8b90613 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 852
diff changeset
1214
9021
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1215 ;; t if point is at a tag line that matches TAG exactly.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1216 ;; point should be just after a string that matches TAG.
884
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1217 (defun tag-exact-match-p (tag)
4666
674082454a0c (tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents: 4661
diff changeset
1218 ;; The match is really exact if there is an explicit tag name.
8081
6099d3d43685 (tag-exact-match-p): Test for point sitting after the explicit tag name
Roland McGrath <roland@gnu.org>
parents: 8040
diff changeset
1219 (or (and (eq (char-after (point)) ?\001)
8082
215cfbab6d72 (tag-exact-match-p): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents: 8081
diff changeset
1220 (eq (char-after (- (point) (length tag) 1)) ?\177))
8081
6099d3d43685 (tag-exact-match-p): Test for point sitting after the explicit tag name
Roland McGrath <roland@gnu.org>
parents: 8040
diff changeset
1221 ;; We are not on the explicit tag name, but perhaps it follows.
9021
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1222 (looking-at (concat "[^\177\n]*\177" (regexp-quote tag) "\001"))))
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1223
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1224 ;; t if point is at a tag line that matches TAG as a symbol.
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1225 ;; point should be just after a string that matches TAG.
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1226 (defun tag-symbol-match-p (tag)
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1227 (and (looking-at "\\Sw.*\177") (looking-at "\\S_.*\177")
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1228 (save-excursion
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1229 (backward-char (1+ (length tag)))
e0709ca0418a (tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents: 9020
diff changeset
1230 (and (looking-at "\\Sw") (looking-at "\\S_")))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1231
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1232 ;; t if point is at a tag line that matches TAG as a word.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1233 ;; point should be just after a string that matches TAG.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1234 (defun tag-word-match-p (tag)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1235 (and (looking-at "\\b.*\177")
15770
17158dfe7765 (etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents: 15360
diff changeset
1236 (save-excursion (backward-char (length tag))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1237 (looking-at "\\b"))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1238
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1239 (defun tag-exact-file-name-match-p (tag)
10661
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
1240 (and (looking-at ",")
15775
2f589e0f2c7a (tag-exact-file-name-match-p): Fix previous change.
Erik Naggum <erik@naggum.no>
parents: 15770
diff changeset
1241 (save-excursion (backward-char (length tag))
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1242 (looking-at "\f\n"))))
10661
32beb7b6dbf7 Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents: 10458
diff changeset
1243
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1244 ;; t if point is in a tag line with a tag containing TAG as a substring.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1245 (defun tag-any-match-p (tag)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1246 (looking-at ".*\177"))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1247
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1248 ;; t if point is at a tag line that matches RE as a regexp.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1249 (defun tag-re-match-p (re)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1250 (save-excursion
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1251 (beginning-of-line)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1252 (let ((bol (point)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1253 (and (search-forward "\177" (save-excursion (end-of-line) (point)) t)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1254 (re-search-backward re bol t)))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1255
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1256 ;;;###autoload
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1257 (defun next-file (&optional initialize novisit)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1258 "Select next file among files in current tags table.
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1259
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1260 A first argument of t (prefix arg, if interactive) initializes to the
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1261 beginning of the list of files in the tags table. If the argument is
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1262 neither nil nor t, it is evalled to initialize the list of files.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1263
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1264 Non-nil second argument NOVISIT means use a temporary buffer
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1265 to save time and avoid uninteresting warnings.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1266
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1267 Value is nil if the file was already visited;
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1268 if the file was newly read in, the value is the filename."
13576
38c6a718abb8 (next-file): Make interactive arg t if had any prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 13341
diff changeset
1269 ;; Make the interactive arg t if there was any prefix arg.
38c6a718abb8 (next-file): Make interactive arg t if had any prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 13341
diff changeset
1270 (interactive (list (if current-prefix-arg t)))
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1271 (cond ((not initialize)
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1272 ;; Not the first run.
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1273 )
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1274 ((eq initialize t)
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1275 ;; Initialize the list from the tags table.
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1276 (save-excursion
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1277 ;; Visit the tags table buffer to get its list of files.
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1278 (visit-tags-table-buffer)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1279 ;; Copy the list so we can setcdr below, and expand the file
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1280 ;; names while we are at it, in this buffer's default directory.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1281 (setq next-file-list (mapcar 'expand-file-name (tags-table-files)))
9631
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1282 ;; Iterate over all the tags table files, collecting
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1283 ;; a complete list of referenced file names.
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1284 (while (visit-tags-table-buffer t)
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1285 ;; Find the tail of the working list and chain on the new
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1286 ;; sublist for this tags table.
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1287 (let ((tail next-file-list))
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1288 (while (cdr tail)
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1289 (setq tail (cdr tail)))
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1290 ;; Use a copy so the next loop iteration will not modify the
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1291 ;; list later returned by (tags-table-files).
11316
72f527d22fe1 (next-file): Handle empty list returned by (tags-table-files).
Roland McGrath <roland@gnu.org>
parents: 10680
diff changeset
1292 (if tail
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1293 (setcdr tail (mapcar 'expand-file-name (tags-table-files)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1294 (setq next-file-list (mapcar 'expand-file-name
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1295 (tags-table-files))))))))
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1296 (t
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1297 ;; Initialize the list by evalling the argument.
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1298 (setq next-file-list (eval initialize))))
9631
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1299 (if next-file-list
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1300 ()
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1301 (and novisit
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1302 (get-buffer " *next-file*")
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1303 (kill-buffer " *next-file*"))
a5bd0b6b080e (next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents: 9579
diff changeset
1304 (error "All files processed."))
12942
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1305 (let* ((next (car next-file-list))
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1306 (new (not (get-file-buffer next))))
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1307 ;; Advance the list before trying to find the file.
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1308 ;; If we get an error finding the file, don't get stuck on it.
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1309 (setq next-file-list (cdr next-file-list))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1310 (if (not (and new novisit))
12942
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1311 (set-buffer (find-file-noselect next novisit))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1312 ;; Like find-file, but avoids random warning messages.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1313 (set-buffer (get-buffer-create " *next-file*"))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1314 (kill-all-local-variables)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1315 (erase-buffer)
12942
3685b0e52d2a (next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents: 11792
diff changeset
1316 (setq new next)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1317 (insert-file-contents new nil))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1318 new))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1319
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1320 (defvar tags-loop-operate nil
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1321 "Form for `tags-loop-continue' to eval to change one file.")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1322
1808
60685747963c (tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents: 1807
diff changeset
1323 (defvar tags-loop-scan
14420
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1324 '(error "%s"
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1325 (substitute-command-keys
1808
60685747963c (tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents: 1807
diff changeset
1326 "No \\[tags-search] or \\[tags-query-replace] in progress."))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1327 "Form for `tags-loop-continue' to eval to scan one file.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1328 If it returns non-nil, this file needs processing by evalling
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1329 \`tags-loop-operate'. Otherwise, move on to the next file.")
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1330
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
1331 ;;;###autoload
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1332 (defun tags-loop-continue (&optional first-time)
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1333 "Continue last \\[tags-search] or \\[tags-query-replace] command.
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1334 Used noninteractively with non-nil argument to begin such a command (the
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1335 argument is passed to `next-file', which see).
11792
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1336
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1337 Two variables control the processing we do on each file: the value of
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1338 `tags-loop-scan' is a form to be executed on each file to see if it is
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1339 interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1340 evaluate to operate on an interesting file. If the latter evaluates to
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1341 nil, we exit; otherwise we scan the next file."
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1342 (interactive)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1343 (let (new
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1344 (messaged nil))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1345 (while
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1346 (progn
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1347 ;; Scan files quickly for the first or next interesting one.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1348 (while (or first-time
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1349 (save-restriction
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1350 (widen)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1351 (not (eval tags-loop-scan))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1352 (setq new (next-file first-time t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1353 ;; If NEW is non-nil, we got a temp buffer,
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1354 ;; and NEW is the file name.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1355 (if (or messaged
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1356 (and (not first-time)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1357 (> baud-rate search-slow-speed)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1358 (setq messaged t)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1359 (message "Scanning file %s..." (or new buffer-file-name)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1360 (setq first-time nil)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1361 (goto-char (point-min)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1362
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1363 ;; If we visited it in a temp buffer, visit it now for real.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1364 (if new
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1365 (let ((pos (point)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1366 (erase-buffer)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1367 (set-buffer (find-file-noselect new))
11792
4284a0c7971a (tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 11482
diff changeset
1368 (setq new nil) ;No longer in a temp buffer.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1369 (widen)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1370 (goto-char pos)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1371
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1372 (switch-to-buffer (current-buffer))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1373
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1374 ;; Now operate on the file.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1375 ;; If value is non-nil, continue to scan the next file.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1376 (eval tags-loop-operate)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1377 (and messaged
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1378 (null tags-loop-operate)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1379 (message "Scanning file %s...found" buffer-file-name))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1380 ;;;###autoload (define-key esc-map "," 'tags-loop-continue)
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1381
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
1382 ;;;###autoload
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1383 (defun tags-search (regexp &optional file-list-form)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1384 "Search through all files listed in tags table for match for REGEXP.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1385 Stops when a match is found.
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1386 To continue searching for next match, use command \\[tags-loop-continue].
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1387
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1388 See documentation of variable `tags-file-name'."
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1389 (interactive "sTags search (regexp): ")
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1390 (if (and (equal regexp "")
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1391 (eq (car tags-loop-scan) 're-search-forward)
1696
cceb5375ce40 Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents: 1555
diff changeset
1392 (null tags-loop-operate))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1393 ;; Continue last tags-search as if by M-,.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 (tags-loop-continue nil)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1395 (setq tags-loop-scan
11482
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1396 (list 're-search-forward (list 'quote regexp) nil t)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1397 tags-loop-operate nil)
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1398 (tags-loop-continue (or file-list-form t))))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1399
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
1400 ;;;###autoload
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1401 (defun tags-query-replace (from to &optional delimited file-list-form)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1402 "Query-replace-regexp FROM with TO through all files listed in tags table.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1404 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 with the command \\[tags-loop-continue].
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1406
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1407 See documentation of variable `tags-file-name'."
9941
6d82f17895cf (tags-query-replace): Use query-replace-read-args in interactive spec.
Roland McGrath <roland@gnu.org>
parents: 9928
diff changeset
1408 (interactive (query-replace-read-args "Tags query replace (regexp)" t))
804
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1409 (setq tags-loop-scan (list 'prog1
11482
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1410 (list 'if (list 're-search-forward
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1411 (list 'quote from) nil t)
804
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1412 ;; When we find a match, move back
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1413 ;; to the beginning of it so perform-replace
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1414 ;; will see it.
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1415 '(goto-char (match-beginning 0))))
11482
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1416 tags-loop-operate (list 'perform-replace
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1417 (list 'quote from) (list 'quote to)
d81023e5f033 (tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents: 11328
diff changeset
1418 t t (list 'quote delimited)))
4661
8ca17ed2aeb8 (next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents: 4486
diff changeset
1419 (tags-loop-continue (or file-list-form t)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1420
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1421 (defun tags-complete-tags-table-file (string predicate what)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1422 (save-excursion
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1423 ;; If we need to ask for the tag table, allow that.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1424 (let ((enable-recursive-minibuffers t))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1425 (visit-tags-table-buffer))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1426 (if (eq what t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1427 (all-completions string (mapcar 'list (tags-table-files))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1428 predicate)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1429 (try-completion string (mapcar 'list (tags-table-files))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1430 predicate))))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1431
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1432 ;;;###autoload
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1433 (defun list-tags (file &optional next-match)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1434 "Display list of tags in file FILE.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1435 This searches only the first table in the list, and no included tables.
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1436 FILE should be as it appeared in the `etags' command, usually without a
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1437 directory specification."
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1438 (interactive (list (completing-read "List tags in file: "
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1439 'tags-complete-tags-table-file
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1440 nil t nil)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1441 (with-output-to-temp-buffer "*Tags List*"
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1442 (princ "Tags in file ")
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1443 (princ file)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1444 (terpri)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1445 (save-excursion
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1446 (let ((first-time t)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1447 (gotany nil))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1448 (while (visit-tags-table-buffer (not first-time))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1449 (setq first-time nil)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1450 (if (funcall list-tags-function file)
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1451 (setq gotany t)))
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1452 (or gotany
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1453 (error "File %s not in current tags tables" file))))))
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1454
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
1455 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1456 (defun tags-apropos (regexp)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1457 "Display list of all tags in tags table REGEXP matches."
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1458 (interactive "sTags apropos (regexp): ")
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 (with-output-to-temp-buffer "*Tags List*"
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1460 (princ "Tags matching regexp ")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1461 (prin1 regexp)
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1462 (terpri)
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1463 (save-excursion
1149
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
1464 (let ((first-time t))
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
1465 (while (visit-tags-table-buffer (not first-time))
283fa748ba99 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1138
diff changeset
1466 (setq first-time nil)
1151
3dd95c0296ef *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 1149
diff changeset
1467 (funcall tags-apropos-function regexp))))))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1468
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1469 ;;; XXX Kludge interface.
342
8bfd98a0dcdd Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1470
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1471 ;; XXX If a file is in multiple tables, selection may get the wrong one.
804
33aaf4b71a1d *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 800
diff changeset
1472 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1473 (defun select-tags-table ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1474 "Select a tags table file from a menu of those you have already used.
8456
2ca3b54b45b1 (select-tags-table): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8297
diff changeset
1475 The list of tags tables to select from is stored in `tags-table-set-list';
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1476 see the doc of that variable if you want to add names to the list."
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1477 (interactive)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1478 (pop-to-buffer "*Tags Table List*")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1479 (setq buffer-read-only nil)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1480 (erase-buffer)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1481 (let ((set-list tags-table-set-list)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1482 (desired-point nil))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1483 (if tags-table-list
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1484 (progn
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1485 (setq desired-point (point-marker))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1486 (princ tags-table-list (current-buffer))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1487 (insert "\C-m")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1488 (prin1 (car tags-table-list) (current-buffer)) ;invisible
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1489 (insert "\n")))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1490 (while set-list
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1491 (if (eq (car set-list) tags-table-list)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1492 ;; Already printed it.
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1493 ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1494 (princ (car set-list) (current-buffer))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1495 (insert "\C-m")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1496 (prin1 (car (car set-list)) (current-buffer)) ;invisible
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1497 (insert "\n"))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1498 (setq set-list (cdr set-list)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1499 (if tags-file-name
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1500 (progn
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1501 (or desired-point
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1502 (setq desired-point (point-marker)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1503 (insert tags-file-name "\C-m")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1504 (prin1 tags-file-name (current-buffer)) ;invisible
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1505 (insert "\n")))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1506 (setq set-list (delete tags-file-name
13341
c26492df6218 (select-tags-table): Don't modify the value of tags-table-list.
Richard M. Stallman <rms@gnu.org>
parents: 13165
diff changeset
1507 (apply 'nconc (cons (copy-sequence tags-table-list)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1508 (mapcar 'copy-sequence
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1509 tags-table-set-list)))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1510 (while set-list
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1511 (insert (car set-list) "\C-m")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1512 (prin1 (car set-list) (current-buffer)) ;invisible
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1513 (insert "\n")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1514 (setq set-list (delete (car set-list) set-list)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1515 (goto-char 1)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1516 (insert-before-markers
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1517 "Type `t' to select a tags table or set of tags tables:\n\n")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1518 (if desired-point
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1519 (goto-char desired-point))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1520 (set-window-start (selected-window) 1 t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1521 (set-buffer-modified-p nil)
7645
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1522 (select-tags-table-mode))
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1523
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1524 (defvar select-tags-table-mode-map)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1525 (let ((map (make-sparse-keymap)))
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1526 (define-key map "t" 'select-tags-table-select)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1527 (define-key map " " 'next-line)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1528 (define-key map "\^?" 'previous-line)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1529 (define-key map "n" 'next-line)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1530 (define-key map "p" 'previous-line)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1531 (define-key map "q" 'select-tags-table-quit)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1532 (setq select-tags-table-mode-map map))
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1533
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1534 (defun select-tags-table-mode ()
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1535 "Major mode for choosing a current tags table among those already loaded.
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1536
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1537 \\{select-tags-table-mode-map}"
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1538 (interactive)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1539 (kill-all-local-variables)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1540 (setq buffer-read-only t
7645
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1541 major-mode 'select-tags-table-mode
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1542 mode-name "Select Tags Table")
7645
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1543 (use-local-map select-tags-table-mode-map)
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1544 (setq selective-display t
202339c81fa4 (select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents: 7287
diff changeset
1545 selective-display-ellipses nil))
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1546
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1547 (defun select-tags-table-select ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1548 "Select the tags table named on this line."
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1549 (interactive)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1550 (search-forward "\C-m")
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1551 (let ((name (read (current-buffer))))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1552 (visit-tags-table name)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1553 (select-tags-table-quit)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1554 (message "Tags table now %s" name)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1555
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1556 (defun select-tags-table-quit ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1557 "Kill the buffer and delete the selected window."
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1558 (interactive)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1559 (kill-buffer (current-buffer))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1560 (or (one-window-p)
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1561 (delete-window)))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1562
16281
622cc1ef0b19 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 15775
diff changeset
1563 ;;; Note, there is another definition of this function in bindings.el.
360
066d9d0dd901 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 342
diff changeset
1564 ;;;###autoload
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1565 (defun complete-tag ()
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1566 "Perform tags completion on the text around point.
13731
f9bffca29486 Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents: 13576
diff changeset
1567 Completes to the set of names listed in the current tags table.
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1568 The string to complete is chosen in the same way as the default
981
49a539ef702f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 895
diff changeset
1569 for \\[find-tag] (which see)."
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1570 (interactive)
981
49a539ef702f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 895
diff changeset
1571 (or tags-table-list
49a539ef702f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 895
diff changeset
1572 tags-file-name
14420
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1573 (error "%s"
071f9717597f (visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1574 (substitute-command-keys
981
49a539ef702f *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 895
diff changeset
1575 "No tags table loaded. Try \\[visit-tags-table].")))
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1576 (let ((pattern (funcall (or find-tag-default-function
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1577 (get major-mode 'find-tag-default-function)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1578 'find-tag-default)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1579 beg
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1580 completion)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1581 (or pattern
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1582 (error "Nothing to complete"))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1583 (search-backward pattern)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1584 (setq beg (point))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1585 (forward-char (length pattern))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1586 (setq completion (try-completion pattern 'tags-complete-tag nil))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1587 (cond ((eq completion t))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1588 ((null completion)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1589 (message "Can't find completion for \"%s\"" pattern)
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1590 (ding))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1591 ((not (string= pattern completion))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1592 (delete-region beg (point))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1593 (insert completion))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1594 (t
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1595 (message "Making completion list...")
7843
38d89820ab47 (complete-tag): Likewise.
Richard M. Stallman <rms@gnu.org>
parents: 7645
diff changeset
1596 (with-output-to-temp-buffer "*Completions*"
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1597 (display-completion-list
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1598 (all-completions pattern 'tags-complete-tag nil)))
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1599 (message "Making completion list...%s" "done")))))
884
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1600
93a935b7a479 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 878
diff changeset
1601 ;;;###autoload (define-key esc-map "\t" 'complete-tag)
799
f9874f408ddf *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 747
diff changeset
1602
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 474
diff changeset
1603 (provide 'etags)
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
1604
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 804
diff changeset
1605 ;;; etags.el ends here