Mercurial > emacs
annotate lisp/progmodes/etags.el @ 5092:36508a7c0a3f
(x-resolve-font-name): Undo previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 21 Nov 1993 07:23:17 +0000 |
parents | 1d253bc912d8 |
children | bb40928e9e47 |
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 |
1806
da47cfb7624e
(visit-tags-table-buffer): Error if called with 'same and no current table.
Roland McGrath <roland@gnu.org>
parents:
1724
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993 |
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 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
727 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
342 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
25 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
26 |
360 | 27 ;;;###autoload |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
28 (defvar tags-file-name nil |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
29 "*File name of tags table. |
799 | 30 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
|
31 If you set this variable, do not also set `tags-table-list'. |
799 | 32 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
|
33 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. |
824 | 34 ;;;###autoload (put 'tags-file-name 'variable-interactive "fVisit tags table: ") |
799 | 35 |
36 ;;;###autoload | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
37 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list. |
799 | 38 (defvar tags-table-list nil |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
39 "*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
|
40 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
|
41 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
|
42 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
|
43 Use the `etags' program to make a tags table file.") |
799 | 44 |
45 (defvar tags-table-list-pointer nil | |
1149 | 46 "Pointer into `tags-table-list' where the current state of searching is. |
47 Might instead point into a list of included tags tables. | |
48 Use `visit-tags-table-buffer' to cycle through tags tables in this list.") | |
49 | |
50 (defvar tags-table-list-started-at nil | |
51 "Pointer into `tags-table-list', where the current search started.") | |
342 | 52 |
799 | 53 (defvar tags-table-parent-pointer-list nil |
1149 | 54 "Saved state of the tags table that included this one. |
55 Each element is (POINTER . STARTED-AT), giving the values of | |
56 `tags-table-list-pointer' and `tags-table-list-started-at' from | |
57 before we moved into the current table.") | |
799 | 58 |
59 (defvar tags-table-set-list nil | |
60 "List of sets of tags table which have been used together in the past. | |
61 Each element is a list of strings which are file names.") | |
342 | 62 |
799 | 63 ;;;###autoload |
64 (defvar find-tag-hook nil | |
65 "*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. | |
66 The value in the buffer in which \\[find-tag] is done is used, | |
67 not the value in the buffer \\[find-tag] goes to.") | |
68 | |
69 ;;;###autoload | |
70 (defvar find-tag-default-function nil | |
1149 | 71 "*A function of no arguments used by \\[find-tag] to pick a default tag. |
72 If nil, and the symbol that is the value of `major-mode' | |
799 | 73 has a `find-tag-default-function' property (see `put'), that is used. |
74 Otherwise, `find-tag-default' is used.") | |
342 | 75 |
360 | 76 ;;;###autoload |
799 | 77 (defvar default-tags-table-function nil |
78 "*If non-nil, a function of no arguments to choose a default tags file | |
79 for a particular 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
|
80 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
81 (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
|
82 "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
|
83 Pop back to the last location with \\[negative-argument] \\[find-tag].") |
799 | 84 |
85 ;; Tags table state. | |
86 ;; These variables are local in tags table buffers. | |
87 | |
88 (defvar tag-lines-already-matched nil | |
89 "List of positions of beginnings of lines within the tags table | |
90 that are already matched.") | |
91 | |
92 (defvar tags-table-files nil | |
93 "List of file names covered by current tags table. | |
94 nil means it has not yet been computed; use `tags-table-files' to do so.") | |
95 | |
96 (defvar tags-completion-table nil | |
97 "Alist of tag names defined in current tags table.") | |
98 | |
99 (defvar tags-included-tables nil | |
100 "List of tags tables included by the current tags table.") | |
101 | |
102 (defvar next-file-list nil | |
103 "List of files for \\[next-file] to process.") | |
104 | |
105 ;; Hooks for file formats. | |
106 | |
107 (defvar tags-table-format-hooks '(etags-recognize-tags-table | |
824 | 108 recognize-empty-tags-table) |
799 | 109 "List of functions to be called in a tags table buffer to identify |
110 the type of tags table. The functions are called in order, with no arguments, | |
111 until one returns non-nil. The function should make buffer-local bindings | |
112 of the format-parsing tags function variables if successful.") | |
113 | |
114 (defvar file-of-tag-function nil | |
115 "Function to do the work of `file-of-tag' (which see).") | |
116 (defvar tags-table-files-function nil | |
117 "Function to do the work of `tags-table-files' (which see).") | |
118 (defvar tags-completion-table-function nil | |
119 "Function to build the tags-completion-table.") | |
120 (defvar snarf-tag-function nil | |
121 "Function to get info about a matched tag for `goto-tag-location-function'.") | |
122 (defvar goto-tag-location-function nil | |
123 "Function of to go to the location in the buffer specified by a tag. | |
124 One argument, the tag info returned by `snarf-tag-function'.") | |
125 (defvar find-tag-regexp-search-function nil | |
126 "Search function passed to `find-tag-in-order' for finding a regexp tag.") | |
127 (defvar find-tag-regexp-tag-order nil | |
128 "Tag order passed to `find-tag-in-order' for finding a regexp tag.") | |
129 (defvar find-tag-regexp-next-line-after-failure-p nil | |
130 "Flag passed to `find-tag-in-order' for finding a regexp tag.") | |
131 (defvar find-tag-search-function nil | |
132 "Search function passed to `find-tag-in-order' for finding a tag.") | |
133 (defvar find-tag-tag-order nil | |
134 "Tag order passed to `find-tag-in-order' for finding a tag.") | |
135 (defvar find-tag-next-line-after-failure-p nil | |
136 "Flag passed to `find-tag-in-order' for finding a tag.") | |
137 (defvar list-tags-function nil | |
138 "Function to do the work of `list-tags' (which see).") | |
139 (defvar tags-apropos-function nil | |
140 "Function to do the work of `tags-apropos' (which see).") | |
141 (defvar tags-included-tables-function nil | |
142 "Function to do the work of `tags-included-tables' (which see).") | |
143 (defvar verify-tags-table-function nil | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3548
diff
changeset
|
144 "Function to return t iff the current buffer contains a valid |
799 | 145 \(already initialized\) tags file.") |
146 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
147 ;; Initialize the tags table in the current buffer. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
148 ;; 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
|
149 ;; 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
|
150 ;; made buffer-local and initialized to nil. |
799 | 151 (defun initialize-new-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
152 (set (make-local-variable 'tag-lines-already-matched) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
153 (set (make-local-variable 'tags-table-files) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
154 (set (make-local-variable 'tags-completion-table) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
155 (set (make-local-variable 'tags-included-tables) nil) |
799 | 156 ;; Value is t if we have found a valid tags table buffer. |
157 (let ((hooks tags-table-format-hooks)) | |
158 (while (and hooks | |
159 (not (funcall (car hooks)))) | |
160 (setq hooks (cdr hooks))) | |
161 hooks)) | |
162 | |
163 ;;;###autoload | |
164 (defun visit-tags-table (file &optional local) | |
165 "Tell tags commands to use tags table file FILE. | |
342 | 166 FILE should be the name of a file created with the `etags' program. |
799 | 167 A directory name is ok too; it means file TAGS in that directory. |
168 | |
169 Normally \\[visit-tags-table] sets the global value of `tags-file-name'. | |
170 With a prefix arg, set the buffer-local value instead. | |
171 When you find a tag with \\[find-tag], the buffer it finds the tag | |
172 in is given a local value of this variable which is the name of the tags | |
173 file the tag was in." | |
342 | 174 (interactive (list (read-file-name "Visit tags table: (default TAGS) " |
175 default-directory | |
799 | 176 (expand-file-name "TAGS" |
177 default-directory) | |
178 t) | |
179 current-prefix-arg)) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
180 ;; Calling visit-tags-table-buffer with tags-file-name set to FILE will |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
181 ;; initialize a buffer for FILE and set tags-file-name to the |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
182 ;; fully-expanded name. |
1138 | 183 (let ((tags-file-name file)) |
184 (save-excursion | |
1149 | 185 (or (visit-tags-table-buffer 'same) |
1138 | 186 (signal 'file-error (list "Visiting tags table" |
187 "file does not exist" | |
188 file))) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
189 ;; Set FILE to the expanded name. |
1138 | 190 (setq file tags-file-name))) |
799 | 191 (if local |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
192 ;; Set the local value of tags-file-name. |
1149 | 193 (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
|
194 ;; Set the global value of tags-file-name. |
1138 | 195 (setq-default tags-file-name file))) |
196 | |
197 ;; Move tags-table-list-pointer along and set tags-file-name. | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
198 ;; If NO-INCLUDES is non-nil, ignore included tags tables. |
1138 | 199 ;; Returns nil when out of tables. |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
200 (defun tags-next-table (&optional no-includes) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
201 ;; Do we have any included tables? |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
202 (if (and (not no-includes) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
203 (visit-tags-table-buffer 'same) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
204 (tags-included-tables)) |
1149 | 205 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
206 ;; Move into the included tags tables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
207 (setq tags-table-parent-pointer-list |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
208 ;; Save the current state of what table we are in. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
209 (cons (cons tags-table-list-pointer tags-table-list-started-at) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
210 tags-table-parent-pointer-list) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
211 ;; Start the pointer in the list of included tables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
212 tags-table-list-pointer tags-included-tables |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
213 tags-table-list-started-at tags-included-tables) |
1149 | 214 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
215 ;; No included tables. Go to the next table in the list. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
216 (setq tags-table-list-pointer |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
217 (cdr tags-table-list-pointer)) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
218 (or tags-table-list-pointer |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
219 ;; Wrap around. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
220 (setq tags-table-list-pointer tags-table-list)) |
1149 | 221 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
222 (if (eq tags-table-list-pointer tags-table-list-started-at) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
223 ;; We have come full circle. No more tables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
224 (if tags-table-parent-pointer-list |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
225 ;; Pop back to the tags table which includes this one. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
226 (progn |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
227 ;; Restore the state variables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
228 (setq tags-table-list-pointer |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
229 (car (car tags-table-parent-pointer-list)) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
230 tags-table-list-started-at |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
231 (cdr (car tags-table-parent-pointer-list)) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
232 tags-table-parent-pointer-list |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
233 (cdr tags-table-parent-pointer-list)) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
234 ;; Recurse to skip to the next table after the parent. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
235 (tags-next-table t)) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
236 ;; All out of tags tables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
237 (setq tags-table-list-pointer nil)))) |
1149 | 238 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
239 (and tags-table-list-pointer |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
240 ;; Set tags-file-name to the fully-expanded name. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
241 (setq tags-file-name |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
242 (tags-expand-table-name (car tags-table-list-pointer))))) |
1149 | 243 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
244 ;; Expand tags table name FILE into a complete file name. |
1149 | 245 (defun tags-expand-table-name (file) |
246 (setq file (expand-file-name file)) | |
247 (if (file-directory-p file) | |
248 (expand-file-name "TAGS" file) | |
249 file)) | |
1138 | 250 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
251 ;; Return the cdr of LIST (default: tags-table-list) whose car |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
252 ;; is equal to FILE after tags-expand-table-name on both sides. |
1149 | 253 (defun tags-table-list-member (file &optional list) |
254 (or list | |
255 (setq list tags-table-list)) | |
256 (setq file (tags-expand-table-name file)) | |
257 (while (and list | |
258 (not (string= file (tags-expand-table-name (car list))))) | |
259 (setq list (cdr list))) | |
260 list) | |
261 | |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
262 ;; Local var in visit-tags-table-buffer-cont |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
263 ;; which is set by tags-table-including. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
264 (defvar visit-tags-table-buffer-cont) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
265 |
1149 | 266 ;; Subroutine of visit-tags-table-buffer. Frobs its local vars. |
2768
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
267 ;; Search TABLES for one that has tags for THIS-FILE. Recurses on |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
268 ;; included tables. Returns the tail of TABLES (or of an inner |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
269 ;; included list) whose car is a table listing THIS-FILE. If |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
270 ;; CORE-ONLY is non-nil, check only tags tables that are already in |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
271 ;; buffers--don't visit any new files. |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
272 (defun tags-table-including (this-file tables core-only &optional recursing) |
1149 | 273 (let ((found nil)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
274 ;; Loop over TABLES, looking for one containing tags for THIS-FILE. |
1149 | 275 (while (and (not found) |
276 tables) | |
277 (let ((tags-file-name (tags-expand-table-name (car tables)))) | |
278 (if (or (get-file-buffer tags-file-name) | |
2768
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
279 (and (not core-only) |
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
280 (file-exists-p tags-file-name))) |
1149 | 281 (progn |
282 ;; Select the tags table buffer and get the file list up to date. | |
283 (visit-tags-table-buffer 'same) | |
284 (or tags-table-files | |
285 (setq tags-table-files | |
286 (funcall tags-table-files-function))) | |
287 | |
288 (cond ((member this-file tags-table-files) | |
289 ;; Found it. | |
290 (setq found tables)) | |
1138 | 291 |
1149 | 292 ((tags-included-tables) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
293 ;; This table has included tables. Check them. |
1149 | 294 (let ((old tags-table-parent-pointer-list)) |
295 (unwind-protect | |
296 (progn | |
297 (or recursing | |
298 ;; At top level (not in an included tags | |
299 ;; table), set the list to nil so we can | |
300 ;; collect just the elts from this run. | |
301 (setq tags-table-parent-pointer-list nil)) | |
302 (setq found | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
303 ;; Recurse on the list of included tables. |
1149 | 304 (tags-table-including this-file |
305 tags-included-tables | |
2768
82797c755adc
(tags-table-including): Take new third arg CORE-ONLY. If non-nil,
Roland McGrath <roland@gnu.org>
parents:
2590
diff
changeset
|
306 core-only |
1149 | 307 t)) |
308 (if found | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
309 ;; One of them lists THIS-FILE. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
310 ;; Set the table list state variables to move |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
311 ;; us inside the list of included tables. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
312 (setq tags-table-parent-pointer-list |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
313 (cons |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
314 (cons tags-table-list-pointer |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
315 tags-table-list-started-at) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
316 tags-table-parent-pointer-list) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
317 tags-table-list-pointer found |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
318 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
|
319 ;; Set a local variable of |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
320 ;; our caller, visit-tags-table-buffer. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
321 ;; Set it so we won't frob lists later. |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
322 visit-tags-table-buffer-cont |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
323 'included))) |
1149 | 324 (or recursing |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
325 ;; tags-table-parent-pointer-list now describes |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
326 ;; the path of included tables taken by recursive |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
327 ;; invocations of this function. The recursive |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
328 ;; calls have consed onto the front of the list, |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
329 ;; so it is now outermost first. We want it |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
330 ;; innermost first, so reverse it. Then append |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
331 ;; the old list (from before we were called the |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
332 ;; outermost time), to get the complete current |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
333 ;; state of included tables. |
1149 | 334 (setq tags-table-parent-pointer-list |
335 (nconc (nreverse | |
336 tags-table-parent-pointer-list) | |
337 old)))))))))) | |
338 (setq tables (cdr tables))) | |
339 found)) | |
799 | 340 |
341 (defun visit-tags-table-buffer (&optional cont) | |
342 "Select the buffer containing the current tags table. | |
343 If optional arg is t, visit the next table in `tags-table-list'. | |
344 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
|
345 just select the buffer visiting `tags-file-name'. |
1149 | 346 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
|
347 `tags-file-name', `tags-table-list', `tags-table-list-pointer'. |
799 | 348 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
|
349 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
350 ;; Set tags-file-name to the tags table file we want to visit. |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
351 (let ((visit-tags-table-buffer-cont cont)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
352 (cond ((eq visit-tags-table-buffer-cont 'same) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
353 ;; Use the ambient value of tags-file-name. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
354 (or tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
355 (error (substitute-command-keys |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
356 (concat "No tags table in use! " |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
357 "Use \\[visit-tags-table] to select one.")))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
358 ;; Set VISIT-TAGS-TABLE-BUFFER-CONT to nil |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
359 ;; so the code below will make sure tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
360 ;; is in tags-table-list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
361 (setq visit-tags-table-buffer-cont nil)) |
1138 | 362 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
363 (visit-tags-table-buffer-cont |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
364 ;; Find the next table. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
365 (if (tags-next-table) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
366 ;; Skip over nonexistent files. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
367 (while (and (let ((file (tags-expand-table-name tags-file-name))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
368 (not (or (get-file-buffer file) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
369 (file-exists-p file)))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
370 (tags-next-table))))) |
342 | 371 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
372 (t |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
373 ;; Pick a table out of our hat. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
374 (setq tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
375 (or |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
376 ;; First, try a local variable. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
377 (cdr (assq 'tags-file-name (buffer-local-variables))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
378 ;; Second, try a user-specified function to guess. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
379 (and default-tags-table-function |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
380 (funcall default-tags-table-function)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
381 ;; Third, look for a tags table that contains |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
382 ;; tags for the current buffer's file. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
383 ;; If one is found, the lists will be frobnicated, |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
384 ;; and VISIT-TAGS-TABLE-BUFFER-CONT |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
385 ;; will be set non-nil so we don't do it below. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
386 (car (or |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
387 ;; First check only tables already in buffers. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
388 (save-excursion (tags-table-including buffer-file-name |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
389 tags-table-list |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
390 t)) |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
391 ;; Since that didn't find any, now do the |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
392 ;; expensive version: reading new files. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
393 (save-excursion (tags-table-including buffer-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
394 tags-table-list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
395 nil)))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
396 ;; Fourth, use the user variable tags-file-name, if it is not |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
397 ;; already in tags-table-list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
398 (and tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
399 (not (tags-table-list-member tags-file-name)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
400 tags-file-name) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
401 ;; Fifth, use the user variable giving the table list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
402 ;; Find the first element of the list that actually exists. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
403 (let ((list tags-table-list) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
404 file) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
405 (while (and list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
406 (setq file (tags-expand-table-name (car list))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
407 (not (get-file-buffer file)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
408 (not (file-exists-p file))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
409 (setq list (cdr list))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
410 (car list)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
411 ;; Finally, prompt the user for a file name. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
412 (expand-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
413 (read-file-name "Visit tags table: (default TAGS) " |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
414 default-directory |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
415 "TAGS" |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
416 t)))))) |
1149 | 417 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
418 ;; Expand the table name into a full file name. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
419 (setq tags-file-name (tags-expand-table-name tags-file-name)) |
1149 | 420 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
421 (if (and (eq visit-tags-table-buffer-cont t) (null tags-table-list-pointer)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
422 ;; All out of tables. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
423 nil |
1138 | 424 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
425 ;; Verify that tags-file-name is a valid tags table. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
426 (if (if (get-file-buffer tags-file-name) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
427 ;; The file is already in a buffer. Check for the visited file |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
428 ;; having changed since we last used it. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
429 (let (win) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
430 (set-buffer (get-file-buffer tags-file-name)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
431 (setq win (or verify-tags-table-function |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
432 (initialize-new-tags-table))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
433 (if (or (verify-visited-file-modtime (current-buffer)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
434 (not (yes-or-no-p |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
435 "Tags file has changed, read new contents? "))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
436 (and win (funcall verify-tags-table-function)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
437 (revert-buffer t t) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
438 (initialize-new-tags-table))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
439 (set-buffer (find-file-noselect tags-file-name)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
440 (or (string= tags-file-name buffer-file-name) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
441 ;; find-file-noselect has changed the file name. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
442 ;; Propagate the change to tags-file-name and tags-table-list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
443 (let ((tail (member tags-file-name tags-table-list))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
444 (if tail |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
445 (setcar tail buffer-file-name)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
446 (setq tags-file-name buffer-file-name))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
447 (initialize-new-tags-table)) |
1149 | 448 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
449 ;; We have a valid tags table. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
450 (progn |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
451 ;; Bury the tags table buffer so it |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
452 ;; doesn't get in the user's way. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
453 (bury-buffer (current-buffer)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
454 |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
455 (if visit-tags-table-buffer-cont |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
456 ;; No list frobbing required. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
457 nil |
1149 | 458 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
459 ;; Look in the list for the table we chose. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
460 (let ((elt (tags-table-list-member tags-file-name))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
461 (or elt |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
462 ;; The table is not in the current set. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
463 ;; Try to find it in another previously used set. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
464 (let ((sets tags-table-set-list)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
465 (while (and sets |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
466 (not (setq elt (tags-table-list-member |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
467 tags-file-name (car sets))))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
468 (setq sets (cdr sets))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
469 (if sets |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
470 ;; Found in some other set. Switch to that set. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
471 (progn |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
472 (or (memq tags-table-list tags-table-set-list) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
473 ;; Save the current list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
474 (setq tags-table-set-list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
475 (cons tags-table-list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
476 tags-table-set-list))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
477 (setq tags-table-list (car sets))) |
1149 | 478 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
479 ;; Not found in any existing set. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
480 (if (and tags-table-list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
481 (y-or-n-p (concat "Add " tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
482 " to current list" |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
483 " of tags tables? "))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
484 ;; Add it to the current list. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
485 (setq tags-table-list (cons tags-file-name |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
486 tags-table-list)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
487 ;; Make a fresh list, and store the old one. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
488 (or (memq tags-table-list tags-table-set-list) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
489 (setq tags-table-set-list |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
490 (cons tags-table-list tags-table-set-list))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
491 (setq tags-table-list (list tags-file-name))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
492 (setq elt tags-table-list)))) |
1149 | 493 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
494 ;; Set the tags table list state variables to point at the table |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
495 ;; we want to use first. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
496 (setq tags-table-list-started-at elt |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
497 tags-table-list-pointer elt))) |
1156 | 498 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
499 ;; Return of t says the tags table is valid. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
500 t) |
1149 | 501 |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
502 ;; The buffer was not valid. Don't use it again. |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
503 (let ((file tags-file-name)) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
504 (kill-local-variable 'tags-file-name) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
505 (if (eq file tags-file-name) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
506 (setq tags-file-name nil))) |
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
507 (error "File %s is not a valid tags table" buffer-file-name))))) |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
508 |
342 | 509 (defun file-of-tag () |
510 "Return the file name of the file whose tags point is within. | |
799 | 511 Assumes the tags table is the current buffer. |
512 File name returned is relative to tags table file's directory." | |
513 (funcall file-of-tag-function)) | |
342 | 514 |
360 | 515 ;;;###autoload |
799 | 516 (defun tags-table-files () |
517 "Return a list of files in the current tags table. | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
518 Assumes the tags table is the current buffer. |
342 | 519 File names returned are absolute." |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
520 (or tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
521 (setq tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
522 (funcall tags-table-files-function)))) |
799 | 523 |
524 (defun tags-included-tables () | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
525 "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
|
526 Assumes the tags table is the current buffer." |
799 | 527 (or tags-included-tables |
528 (setq tags-included-tables (funcall tags-included-tables-function)))) | |
529 | |
530 ;; Build tags-completion-table on demand. The single current tags table | |
531 ;; and its included tags tables (and their included tables, etc.) have | |
532 ;; their tags included in the completion table. | |
533 (defun tags-completion-table () | |
534 (or tags-completion-table | |
535 (condition-case () | |
536 (prog2 | |
537 (message "Making tags completion table for %s..." buffer-file-name) | |
538 (let ((included (tags-included-tables)) | |
539 (table (funcall tags-completion-table-function))) | |
540 (save-excursion | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
541 ;; 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
|
542 ;; included table's completion obarray to the parent obarray. |
799 | 543 (while included |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
544 ;; Visit the buffer. |
799 | 545 (let ((tags-file-name (car included))) |
1149 | 546 (visit-tags-table-buffer 'same)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
547 ;; Recurse in that buffer to compute its completion table. |
799 | 548 (if (tags-completion-table) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
549 ;; Combine the tables. |
799 | 550 (mapatoms (function |
551 (lambda (sym) | |
552 (intern (symbol-name sym) table))) | |
553 tags-completion-table)) | |
554 (setq included (cdr included)))) | |
555 (setq tags-completion-table table)) | |
556 (message "Making tags completion table for %s...done" | |
557 buffer-file-name)) | |
558 (quit (message "Tags completion table construction aborted.") | |
559 (setq tags-completion-table nil))))) | |
560 | |
561 ;; Completion function for tags. Does normal try-completion, | |
562 ;; but builds tags-completion-table on demand. | |
563 (defun tags-complete-tag (string predicate what) | |
564 (save-excursion | |
5079
1d253bc912d8
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents:
4940
diff
changeset
|
565 ;; 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
|
566 (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
|
567 (visit-tags-table-buffer)) |
799 | 568 (if (eq what t) |
569 (all-completions string (tags-completion-table) predicate) | |
570 (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
|
571 |
342 | 572 ;; Return a default tag to search for, based on the text at point. |
573 (defun find-tag-default () | |
574 (save-excursion | |
575 (while (looking-at "\\sw\\|\\s_") | |
576 (forward-char 1)) | |
799 | 577 (if (or (re-search-backward "\\sw\\|\\s_" |
578 (save-excursion (beginning-of-line) (point)) | |
579 t) | |
580 (re-search-forward "\\(\\sw\\|\\s_\\)+" | |
581 (save-excursion (end-of-line) (point)) | |
582 t)) | |
583 (progn (goto-char (match-end 0)) | |
342 | 584 (buffer-substring (point) |
585 (progn (forward-sexp -1) | |
586 (while (looking-at "\\s'") | |
587 (forward-char 1)) | |
588 (point)))) | |
589 nil))) | |
590 | |
799 | 591 ;; Read a tag name from the minibuffer with defaulting and completion. |
342 | 592 (defun find-tag-tag (string) |
799 | 593 (let* ((default (funcall (or find-tag-default-function |
594 (get major-mode 'find-tag-default-function) | |
595 'find-tag-default))) | |
596 (spec (completing-read (if default | |
597 (format "%s(default %s) " string default) | |
598 string) | |
599 'tags-complete-tag))) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
600 (if (equal spec "") |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
601 (or default (error "There is no default tag")) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
602 spec))) |
342 | 603 |
852 | 604 (defvar last-tag nil |
605 "Last tag found by \\[find-tag].") | |
606 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
607 ;; 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
|
608 (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
|
609 (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
|
610 (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
|
611 '- |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
612 t)) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
613 (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
|
614 (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
|
615 (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
|
616 |
799 | 617 ;;;###autoload |
618 (defun find-tag-noselect (tagname &optional next-p regexp-p) | |
619 "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
|
620 Returns the buffer containing the tag's definition and moves its point there, |
799 | 621 but does not select the buffer. |
622 The default for TAGNAME is the expression in the buffer near point. | |
474 | 623 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
624 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
|
625 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
|
626 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
|
627 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
|
628 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
|
629 |
799 | 630 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
342 | 631 |
799 | 632 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
|
633 (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
|
634 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
635 ;; 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
|
636 ;; tags table buffer. |
799 | 637 (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
|
638 (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
|
639 ;; 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
|
640 (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
|
641 (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
|
642 (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
|
643 ;; 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
|
644 (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
|
645 (prog1 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
646 ;; 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
|
647 (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
|
648 (goto-char (marker-position marker)) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3548
diff
changeset
|
649 ;; 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
|
650 (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
|
651 ;; 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
|
652 (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
|
653 (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
|
654 ;; 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
|
655 (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
|
656 ;; 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
|
657 (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
|
658 ;; 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
|
659 (setq last-tag tagname)) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
660 (prog1 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
661 ;; Record the location so we can pop back to it later. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
662 (marker-buffer |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
663 (car |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
664 (setq 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
|
665 (cons (let ((marker (make-marker))) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
666 (save-excursion |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
667 (set-buffer |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
668 ;; find-tag-in-order does the real work. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
669 (find-tag-in-order |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
670 (if next-p last-tag tagname) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
671 (if regexp-p |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
672 find-tag-regexp-search-function |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
673 find-tag-search-function) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
674 (if regexp-p |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
675 find-tag-regexp-tag-order |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
676 find-tag-tag-order) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
677 (if regexp-p |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
678 find-tag-regexp-next-line-after-failure-p |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
679 find-tag-next-line-after-failure-p) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
680 (if regexp-p "matching" "containing") |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
681 (not 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
|
682 (set-marker marker (point)))) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
683 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
|
684 (run-hooks 'local-find-tag-hook))))) |
360 | 685 |
686 ;;;###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
|
687 (defun find-tag (tagname &optional next-p regexp-p) |
799 | 688 "Find tag (in current tags table) whose name contains TAGNAME. |
689 Select the buffer containing the tag's definition, and move point there. | |
690 The default for TAGNAME is the expression in the buffer around or before point. | |
342 | 691 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
692 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
|
693 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
|
694 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
|
695 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
|
696 or just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 697 |
698 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
|
699 (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
|
700 (switch-to-buffer (find-tag-noselect tagname next-p regexp-p))) |
799 | 701 ;;;###autoload (define-key esc-map "." 'find-tag) |
342 | 702 |
727 | 703 ;;;###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
|
704 (defun find-tag-other-window (tagname &optional next-p regexp-p) |
799 | 705 "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
|
706 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
|
707 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
|
708 around or before point. |
799 | 709 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
710 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
|
711 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
|
712 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
|
713 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
|
714 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 715 |
716 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
|
717 (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
|
718 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
719 ;; 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
|
720 ;; 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
|
721 ;; 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
|
722 ;; doing find-tag-noselect, and restore it after. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
723 (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
|
724 (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
|
725 (tagpoint (progn (set-buffer tagbuf) (point)))) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
726 (set-window-point (prog1 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
727 (selected-window) |
1976
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
728 (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
|
729 ;; 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
|
730 ;; 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
|
731 ;; 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
|
732 ;; 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
|
733 ;; 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
|
734 (set-window-point (selected-window) tagpoint)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
735 window-point))) |
799 | 736 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window) |
737 | |
804 | 738 ;;;###autoload |
799 | 739 (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
|
740 "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
|
741 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
|
742 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
|
743 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
|
744 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
745 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
|
746 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
|
747 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
|
748 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
|
749 just \\[negative-argument]), pop back to the previous tag gone to. |
727 | 750 |
799 | 751 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
|
752 (interactive (find-tag-interactive "Find tag other frame: ")) |
799 | 753 (let ((pop-up-frames t)) |
754 (find-tag-other-window tagname next-p))) | |
755 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame) | |
342 | 756 |
360 | 757 ;;;###autoload |
799 | 758 (defun find-tag-regexp (regexp &optional next-p other-window) |
759 "Find tag (in current tags table) whose name matches REGEXP. | |
760 Select the buffer containing the tag's definition and move point there. | |
761 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
762 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
|
763 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
|
764 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
|
765 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
|
766 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 767 |
768 If third arg OTHER-WINDOW is non-nil, select the buffer in another window. | |
769 | |
770 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
|
771 (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
|
772 ;; 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
|
773 (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
|
774 regexp next-p t)) |
799 | 775 |
776 ;; Internal tag finding function. | |
777 | |
778 ;; PATTERN is a string to pass to second arg SEARCH-FORWARD-FUNC, and to | |
779 ;; any member of the function list ORDER (third arg). If ORDER is nil, | |
780 ;; use saved state to continue a previous search. | |
781 | |
782 ;; Fourth arg MATCHING is a string, an English '-ing' word, to be used in | |
783 ;; an error message. | |
784 | |
785 ;; Fifth arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match, | |
786 ;; point should be moved to the next line. | |
787 | |
788 ;; Algorithm is as follows. For each qualifier-func in ORDER, go to | |
789 ;; beginning of tags file, and perform inner loop: for each naive match for | |
790 ;; PATTERN found using SEARCH-FORWARD-FUNC, qualify the naive match using | |
791 ;; qualifier-func. If it qualifies, go to the specified line in the | |
792 ;; specified source file and return. Qualified matches are remembered to | |
793 ;; avoid repetition. State is saved so that the loop can be continued. | |
794 | |
1555
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
795 (defun find-tag-in-order (pattern |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
796 search-forward-func |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
797 order |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
798 next-line-after-failure-p |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
799 matching |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
800 first-search) |
799 | 801 (let (file ;name of file containing tag |
802 tag-info ;where to find the tag in FILE | |
803 tags-table-file ;name of tags file | |
804 (first-table t) | |
805 (tag-order order) | |
806 goto-func | |
807 ) | |
808 (save-excursion | |
1149 | 809 (or first-search ;find-tag-noselect has already done it. |
810 (visit-tags-table-buffer 'same)) | |
811 | |
799 | 812 ;; Get a qualified match. |
813 (catch 'qualified-match-found | |
1149 | 814 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
815 ;; Iterate over the list of tags tables. |
799 | 816 (while (or first-table |
817 (visit-tags-table-buffer t)) | |
818 | |
819 (if first-search | |
820 (setq tag-lines-already-matched nil)) | |
821 | |
884 | 822 (and first-search first-table |
823 ;; Start at beginning of tags file. | |
824 (goto-char (point-min))) | |
825 (setq first-table nil) | |
799 | 826 |
827 (setq tags-table-file buffer-file-name) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
828 ;; Iterate over the list of ordering predicates. |
799 | 829 (while order |
830 (while (funcall search-forward-func pattern nil t) | |
831 ;; Naive match found. Qualify the match. | |
832 (and (funcall (car order) pattern) | |
833 ;; Make sure it is not a previous qualified match. | |
834 ;; Use of `memq' depends on numbers being eq. | |
835 (not (memq (save-excursion (beginning-of-line) (point)) | |
836 tag-lines-already-matched)) | |
837 (throw 'qualified-match-found nil)) | |
838 (if next-line-after-failure-p | |
839 (forward-line 1))) | |
840 ;; Try the next flavor of match. | |
841 (setq order (cdr order)) | |
842 (goto-char (point-min))) | |
843 (setq order tag-order)) | |
844 ;; We throw out on match, so only get here if there were no matches. | |
845 (error "No %stags %s %s" (if first-search "" "more ") | |
846 matching pattern)) | |
847 | |
848 ;; Found a tag; extract location info. | |
849 (beginning-of-line) | |
850 (setq tag-lines-already-matched (cons (point) | |
851 tag-lines-already-matched)) | |
852 ;; Expand the filename, using the tags table buffer's default-directory. | |
853 (setq file (expand-file-name (file-of-tag)) | |
854 tag-info (funcall snarf-tag-function)) | |
855 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
856 ;; Get the local value in the tags table buffer before switching buffers. |
799 | 857 (setq goto-func goto-tag-location-function) |
858 | |
859 ;; Find the right line in the specified file. | |
860 (set-buffer (find-file-noselect file)) | |
861 (widen) | |
862 (push-mark) | |
863 (funcall goto-func tag-info) | |
864 | |
865 ;; Give this buffer a local value of tags-file-name. | |
866 ;; The next time visit-tags-table-buffer is called, | |
867 ;; it will use the same tags table that found a match in this buffer. | |
868 (make-local-variable 'tags-file-name) | |
869 (setq tags-file-name tags-table-file) | |
870 | |
871 ;; Return the buffer where the tag was found. | |
872 (current-buffer)))) | |
873 | |
874 ;; `etags' TAGS file format support. | |
875 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
876 ;; 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
|
877 ;; the tags table format variables, and return non-nil. |
799 | 878 (defun etags-recognize-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
879 (and (etags-verify-tags-table) |
1136 | 880 ;; It is annoying to flash messages on the screen briefly, |
881 ;; and this message is not useful. -- rms | |
882 ;; (message "%s is an `etags' TAGS file" buffer-file-name) | |
799 | 883 (mapcar (function (lambda (elt) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
884 (set (make-local-variable (car elt)) (cdr elt)))) |
799 | 885 '((file-of-tag-function . etags-file-of-tag) |
886 (tags-table-files-function . etags-tags-table-files) | |
887 (tags-completion-table-function . etags-tags-completion-table) | |
888 (snarf-tag-function . etags-snarf-tag) | |
889 (goto-tag-location-function . etags-goto-tag-location) | |
890 (find-tag-regexp-search-function . re-search-forward) | |
891 (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
|
892 (find-tag-regexp-next-line-after-failure-p . t) |
799 | 893 (find-tag-search-function . search-forward) |
894 (find-tag-tag-order . (tag-exact-match-p tag-word-match-p | |
895 tag-any-match-p)) | |
896 (find-tag-next-line-after-failure-p . nil) | |
897 (list-tags-function . etags-list-tags) | |
898 (tags-apropos-function . etags-tags-apropos) | |
899 (tags-included-tables-function . etags-tags-included-tables) | |
900 (verify-tags-table-function . etags-verify-tags-table) | |
901 )))) | |
902 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
903 ;; Return non-nil iff the current buffer is a valid etags TAGS file. |
799 | 904 (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
|
905 ;; 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
|
906 (eq (char-after 1) ?\f)) |
799 | 907 |
908 (defun etags-file-of-tag () | |
909 (save-excursion | |
910 (search-backward "\f\n") | |
911 (forward-char 2) | |
912 (buffer-substring (point) | |
913 (progn (skip-chars-forward "^,") (point))))) | |
914 | |
915 (defun etags-tags-completion-table () | |
916 (let ((table (make-vector 511 0))) | |
917 (save-excursion | |
918 (goto-char (point-min)) | |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
919 ;; 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
|
920 ;; \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
|
921 ;; \2 is not interesting; |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
922 ;; \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
|
923 ;; \4 is not interesting; |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
924 ;; \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
|
925 ;; \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
|
926 ;; \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
|
927 (while (re-search-forward |
3702
5bcb8bd982d0
(etags-tags-completion-table): When skipping the noise
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
928 "^\\(\\(.+[^-a-zA-Z0-9_$]+\\)?\\([-a-zA-Z0-9_$]+\\)\ |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
929 \[^-a-zA-Z0-9_$]*\\)\177\\(\\([^\n\001]+\\)\001\\)?\\([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
|
930 nil t) |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
931 (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
|
932 ;; 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
|
933 (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
|
934 ;; 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
|
935 (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
|
936 table))) |
799 | 937 table)) |
938 | |
939 (defun etags-snarf-tag () | |
940 (let (tag-text startpos) | |
941 (search-forward "\177") | |
942 (setq tag-text (buffer-substring (1- (point)) | |
943 (save-excursion (beginning-of-line) | |
944 (point)))) | |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
945 ;; Skip explicit tag name if present. |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
946 (search-forward "\001" (save-excursion (forward-line 1) (point)) t) |
799 | 947 (search-forward ",") |
948 (setq startpos (string-to-int (buffer-substring | |
949 (point) | |
950 (progn (skip-chars-forward "0-9") | |
951 (point))))) | |
952 ;; Leave point on the next line of the tags file. | |
953 (forward-line 1) | |
954 (cons tag-text startpos))) | |
955 | |
956 (defun etags-goto-tag-location (tag-info) | |
957 (let ((startpos (cdr tag-info)) | |
958 ;; This constant is 1/2 the initial search window. | |
959 ;; There is no sense in making it too small, | |
960 ;; since just going around the loop once probably | |
961 ;; costs about as much as searching 2000 chars. | |
962 (offset 1000) | |
963 (found nil) | |
4389
102019d30432
(etags-goto-tag-location): Handle selective display.
Richard M. Stallman <rms@gnu.org>
parents:
3702
diff
changeset
|
964 (pat (concat (if (eq selective-display t) |
102019d30432
(etags-goto-tag-location): Handle selective display.
Richard M. Stallman <rms@gnu.org>
parents:
3702
diff
changeset
|
965 "\\(^\\|\^m\\)" "^") |
102019d30432
(etags-goto-tag-location): Handle selective display.
Richard M. Stallman <rms@gnu.org>
parents:
3702
diff
changeset
|
966 (regexp-quote (car tag-info))))) |
799 | 967 (or startpos |
968 (setq startpos (point-min))) | |
969 (while (and (not found) | |
970 (progn | |
971 (goto-char (- startpos offset)) | |
972 (not (bobp)))) | |
973 (setq found | |
974 (re-search-forward pat (+ startpos offset) t) | |
975 offset (* 3 offset))) ; expand search window | |
976 (or found | |
977 (re-search-forward pat nil t) | |
978 (error "`%s' not found in %s; time to rerun etags" | |
979 pat buffer-file-name))) | |
4486
3ab31f82a529
(etags-goto-tag-location): If match started with Ctrl-m,
Richard M. Stallman <rms@gnu.org>
parents:
4407
diff
changeset
|
980 ;; Position point at the right place |
3ab31f82a529
(etags-goto-tag-location): If match started with Ctrl-m,
Richard M. Stallman <rms@gnu.org>
parents:
4407
diff
changeset
|
981 ;; if the search string matched an extra Ctrl-m at the beginning. |
3ab31f82a529
(etags-goto-tag-location): If match started with Ctrl-m,
Richard M. Stallman <rms@gnu.org>
parents:
4407
diff
changeset
|
982 (and (eq selective-display t) |
3ab31f82a529
(etags-goto-tag-location): If match started with Ctrl-m,
Richard M. Stallman <rms@gnu.org>
parents:
4407
diff
changeset
|
983 (looking-at "\^m") |
3ab31f82a529
(etags-goto-tag-location): If match started with Ctrl-m,
Richard M. Stallman <rms@gnu.org>
parents:
4407
diff
changeset
|
984 (forward-char 1)) |
799 | 985 (beginning-of-line)) |
986 | |
987 (defun etags-list-tags (file) | |
988 (goto-char 1) | |
989 (if (not (search-forward (concat "\f\n" file ",") nil t)) | |
990 nil | |
991 (forward-line 1) | |
992 (while (not (or (eobp) (looking-at "\f"))) | |
993 (princ (buffer-substring (point) | |
994 (progn (skip-chars-forward "^\177") | |
995 (point)))) | |
996 (terpri) | |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
997 (forward-line 1)) |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
998 t)) |
799 | 999 |
1000 (defun etags-tags-apropos (string) | |
1001 (goto-char 1) | |
1002 (while (re-search-forward string nil t) | |
1003 (beginning-of-line) | |
1004 (princ (buffer-substring (point) | |
1005 (progn (skip-chars-forward "^\177") | |
1006 (point)))) | |
1007 (terpri) | |
1008 (forward-line 1))) | |
1009 | |
1010 (defun etags-tags-table-files () | |
1011 (let ((files nil) | |
1012 beg) | |
1013 (goto-char (point-min)) | |
1014 (while (search-forward "\f\n" nil t) | |
1015 (setq beg (point)) | |
1016 (skip-chars-forward "^,\n") | |
1017 (or (looking-at ",include$") | |
1018 ;; Expand in the default-directory of the tags table buffer. | |
1019 (setq files (cons (expand-file-name (buffer-substring beg (point))) | |
1020 files)))) | |
1021 (nreverse files))) | |
1022 | |
1023 (defun etags-tags-included-tables () | |
1024 (let ((files nil) | |
1025 beg) | |
1026 (goto-char (point-min)) | |
1027 (while (search-forward "\f\n" nil t) | |
1028 (setq beg (point)) | |
1029 (skip-chars-forward "^,\n") | |
1030 (if (looking-at ",include$") | |
1031 ;; Expand in the default-directory of the tags table buffer. | |
1032 (setq files (cons (expand-file-name (buffer-substring beg (point))) | |
1033 files)))) | |
1034 (nreverse files))) | |
1035 | |
1036 ;; Empty tags file support. | |
1037 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1038 ;; 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
|
1039 ;; variables which do nothing. |
799 | 1040 (defun recognize-empty-tags-table () |
1041 (and (zerop (buffer-size)) | |
1042 (mapcar (function (lambda (sym) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1043 (set (make-local-variable sym) 'ignore))) |
799 | 1044 '(tags-table-files-function |
1045 tags-completion-table-function | |
1046 find-tag-regexp-search-function | |
1047 find-tag-search-function | |
1048 tags-apropos-function | |
1049 tags-included-tables-function)) | |
1050 (set (make-local-variable 'verify-tags-table-function) | |
1051 (function (lambda () | |
1052 (zerop (buffer-size))))))) | |
1053 | |
1054 ;;; Match qualifier functions for tagnames. | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1055 ;;; XXX these functions assume etags file format. |
799 | 1056 |
884 | 1057 ;; This might be a neat idea, but it's too hairy at the moment. |
1058 ;;(defmacro tags-with-syntax (&rest body) | |
1059 ;; (` (let ((current (current-buffer)) | |
1060 ;; (otable (syntax-table)) | |
1061 ;; (buffer (find-file-noselect (file-of-tag))) | |
1062 ;; table) | |
1063 ;; (unwind-protect | |
1064 ;; (progn | |
1065 ;; (set-buffer buffer) | |
1066 ;; (setq table (syntax-table)) | |
1067 ;; (set-buffer current) | |
1068 ;; (set-syntax-table table) | |
1069 ;; (,@ body)) | |
1070 ;; (set-syntax-table otable))))) | |
1071 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form)) | |
877 | 1072 |
799 | 1073 ;; t if point is at a tag line that matches TAG "exactly". |
1074 ;; point should be just after a string that matches TAG. | |
884 | 1075 (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
|
1076 ;; The match is really exact if there is an explicit tag name. |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1077 (or (looking-at (concat "[^\177]*\177" (regexp-quote tag) "\001")) |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1078 ;; We also call it "exact" if it is surrounded by symbol boundaries. |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1079 ;; This is needed because etags does not always generate explicit names. |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1080 (and (looking-at "\\Sw.*\177") (looking-at "\\S_.*\177") |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1081 (save-excursion |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1082 (backward-char (1+ (length tag))) |
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1083 (and (looking-at "\\Sw") (looking-at "\\S_")))))) |
799 | 1084 |
1085 ;; t if point is at a tag line that matches TAG as a word. | |
1086 ;; point should be just after a string that matches TAG. | |
1087 (defun tag-word-match-p (tag) | |
1088 (and (looking-at "\\b.*\177") | |
1089 (save-excursion (backward-char (1+ (length tag))) | |
1090 (looking-at "\\b")))) | |
1091 | |
1092 ;; t if point is in a tag line with a tag containing TAG as a substring. | |
1093 (defun tag-any-match-p (tag) | |
1094 (looking-at ".*\177")) | |
1095 | |
1096 ;; t if point is at a tag line that matches RE as a regexp. | |
1097 (defun tag-re-match-p (re) | |
1098 (save-excursion | |
1099 (beginning-of-line) | |
1100 (let ((bol (point))) | |
1101 (and (search-forward "\177" (save-excursion (end-of-line) (point)) t) | |
1102 (re-search-backward re bol t))))) | |
1103 | |
1104 ;;;###autoload | |
1105 (defun next-file (&optional initialize novisit) | |
1106 "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
|
1107 |
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
|
1108 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
|
1109 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
|
1110 neither nil nor t, it is evalled to initialize the list of files. |
799 | 1111 |
1112 Non-nil second argument NOVISIT means use a temporary buffer | |
1113 to save time and avoid uninteresting warnings. | |
1114 | |
1115 Value is nil if the file was already visited; | |
1116 if the file was newly read in, the value is the filename." | |
342 | 1117 (interactive "P") |
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
|
1118 (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
|
1119 ;; 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
|
1120 ) |
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
|
1121 ((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
|
1122 ;; 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
|
1123 (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
|
1124 ;; 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
|
1125 (visit-tags-table-buffer) |
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
|
1126 (setq next-file-list (tags-table-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
|
1127 (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
|
1128 ;; 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
|
1129 (setq next-file-list (eval initialize)))) |
342 | 1130 (or next-file-list |
799 | 1131 (save-excursion |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
1132 ;; Get the files from the next tags table. |
1152 | 1133 ;; When doing (visit-tags-table-buffer t), |
799 | 1134 ;; the tags table buffer must be current. |
1135 (if (and (visit-tags-table-buffer 'same) | |
1136 (visit-tags-table-buffer t)) | |
1137 (setq next-file-list (tags-table-files)) | |
1138 (and novisit | |
1139 (get-buffer " *next-file*") | |
1140 (kill-buffer " *next-file*")) | |
1141 (error "All files processed.")))) | |
1142 (let ((new (not (get-file-buffer (car next-file-list))))) | |
1143 (if (not (and new novisit)) | |
1144 (set-buffer (find-file-noselect (car next-file-list) novisit)) | |
1145 ;; Like find-file, but avoids random warning messages. | |
1146 (set-buffer (get-buffer-create " *next-file*")) | |
1147 (kill-all-local-variables) | |
1148 (erase-buffer) | |
1149 (setq new (car next-file-list)) | |
1150 (insert-file-contents new nil)) | |
1151 (setq next-file-list (cdr next-file-list)) | |
1152 new)) | |
342 | 1153 |
799 | 1154 (defvar tags-loop-operate nil |
1155 "Form for `tags-loop-continue' to eval to change one file.") | |
1156 | |
1808
60685747963c
(tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents:
1807
diff
changeset
|
1157 (defvar tags-loop-scan |
60685747963c
(tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents:
1807
diff
changeset
|
1158 '(error (substitute-command-keys |
60685747963c
(tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents:
1807
diff
changeset
|
1159 "No \\[tags-search] or \\[tags-query-replace] in progress.")) |
799 | 1160 "Form for `tags-loop-continue' to eval to scan one file. |
1161 If it returns non-nil, this file needs processing by evalling | |
1162 \`tags-loop-operate'. Otherwise, move on to the next file.") | |
342 | 1163 |
360 | 1164 ;;;###autoload |
342 | 1165 (defun tags-loop-continue (&optional first-time) |
1166 "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
|
1167 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
|
1168 argument is passed to `next-file', which see). |
799 | 1169 Two variables control the processing we do on each file: |
1170 the value of `tags-loop-scan' is a form to be executed on each file | |
1171 to see if it is interesting (it returns non-nil if so) | |
1172 and `tags-loop-operate' is a form to execute to operate on an interesting file | |
1173 If the latter returns non-nil, we exit; otherwise we scan the next file." | |
342 | 1174 (interactive) |
799 | 1175 (let (new |
1176 (messaged nil)) | |
1177 (while | |
1178 (progn | |
1179 ;; Scan files quickly for the first or next interesting one. | |
1180 (while (or first-time | |
1181 (save-restriction | |
1182 (widen) | |
1183 (not (eval tags-loop-scan)))) | |
1184 (setq new (next-file first-time t)) | |
1185 ;; If NEW is non-nil, we got a temp buffer, | |
1186 ;; and NEW is the file name. | |
1187 (if (or messaged | |
1188 (and (not first-time) | |
1189 (> baud-rate search-slow-speed) | |
1190 (setq messaged t))) | |
1191 (message "Scanning file %s..." (or new buffer-file-name))) | |
1192 (setq first-time nil) | |
1193 (goto-char (point-min))) | |
1194 | |
1195 ;; If we visited it in a temp buffer, visit it now for real. | |
1196 (if new | |
1197 (let ((pos (point))) | |
1198 (erase-buffer) | |
1199 (set-buffer (find-file-noselect new)) | |
1200 (widen) | |
1201 (goto-char pos))) | |
1202 | |
1203 (switch-to-buffer (current-buffer)) | |
1204 | |
1205 ;; Now operate on the file. | |
1206 ;; If value is non-nil, continue to scan the next file. | |
1207 (eval tags-loop-operate))) | |
1208 (and messaged | |
1209 (null tags-loop-operate) | |
1210 (message "Scanning file %s...found" buffer-file-name)))) | |
1211 ;;;###autoload (define-key esc-map "," 'tags-loop-continue) | |
342 | 1212 |
360 | 1213 ;;;###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
|
1214 (defun tags-search (regexp &optional file-list-form) |
799 | 1215 "Search through all files listed in tags table for match for REGEXP. |
342 | 1216 Stops when a match is found. |
1217 To continue searching for next match, use command \\[tags-loop-continue]. | |
1218 | |
799 | 1219 See documentation of variable `tags-file-name'." |
342 | 1220 (interactive "sTags search (regexp): ") |
1221 (if (and (equal regexp "") | |
799 | 1222 (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
|
1223 (null tags-loop-operate)) |
799 | 1224 ;; Continue last tags-search as if by M-,. |
342 | 1225 (tags-loop-continue nil) |
799 | 1226 (setq tags-loop-scan |
1227 (list 're-search-forward regexp nil t) | |
1228 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
|
1229 (tags-loop-continue (or file-list-form t)))) |
342 | 1230 |
360 | 1231 ;;;###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
|
1232 (defun tags-query-replace (from to &optional delimited file-list-form) |
799 | 1233 "Query-replace-regexp FROM with TO through all files listed in tags table. |
342 | 1234 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
799 | 1235 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace |
342 | 1236 with the command \\[tags-loop-continue]. |
1237 | |
799 | 1238 See documentation of variable `tags-file-name'." |
1239 (interactive | |
1240 "sTags query replace (regexp): \nsTags query replace %s by: \nP") | |
804 | 1241 (setq tags-loop-scan (list 'prog1 |
1816 | 1242 (list 'if (list 're-search-forward from nil t) |
804 | 1243 ;; When we find a match, move back |
1244 ;; to the beginning of it so perform-replace | |
1245 ;; will see it. | |
1246 '(goto-char (match-beginning 0)))) | |
799 | 1247 tags-loop-operate (list 'perform-replace from to t t 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
|
1248 (tags-loop-continue (or file-list-form t))) |
799 | 1249 |
1250 ;;;###autoload | |
1251 (defun list-tags (file) | |
1252 "Display list of tags in file FILE. | |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1253 FILE should not contain a directory specification." |
4857
3ca316ec55e3
(list-tags): Fix completing-read call interactive spec; TABLE and PREDICATE
Roland McGrath <roland@gnu.org>
parents:
4666
diff
changeset
|
1254 (interactive (list (completing-read "List tags in file: " |
3ca316ec55e3
(list-tags): Fix completing-read call interactive spec; TABLE and PREDICATE
Roland McGrath <roland@gnu.org>
parents:
4666
diff
changeset
|
1255 (save-excursion |
3ca316ec55e3
(list-tags): Fix completing-read call interactive spec; TABLE and PREDICATE
Roland McGrath <roland@gnu.org>
parents:
4666
diff
changeset
|
1256 (visit-tags-table-buffer) |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1257 (mapcar 'list |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1258 (mapcar 'file-name-nondirectory |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1259 (tags-table-files)))) |
4857
3ca316ec55e3
(list-tags): Fix completing-read call interactive spec; TABLE and PREDICATE
Roland McGrath <roland@gnu.org>
parents:
4666
diff
changeset
|
1260 nil t nil))) |
799 | 1261 (with-output-to-temp-buffer "*Tags List*" |
1262 (princ "Tags in file ") | |
1263 (princ file) | |
1264 (terpri) | |
1265 (save-excursion | |
1266 (let ((first-time t) | |
1267 (gotany nil)) | |
1149 | 1268 (while (visit-tags-table-buffer (not first-time)) |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1269 (setq first-time nil) |
799 | 1270 (if (funcall list-tags-function file) |
1271 (setq gotany t))) | |
1272 (or gotany | |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1273 (error "File %s not in current tags tables" file)))))) |
342 | 1274 |
360 | 1275 ;;;###autoload |
799 | 1276 (defun tags-apropos (regexp) |
1277 "Display list of all tags in tags table REGEXP matches." | |
1278 (interactive "sTags apropos (regexp): ") | |
342 | 1279 (with-output-to-temp-buffer "*Tags List*" |
799 | 1280 (princ "Tags matching regexp ") |
1281 (prin1 regexp) | |
342 | 1282 (terpri) |
1283 (save-excursion | |
1149 | 1284 (let ((first-time t)) |
1285 (while (visit-tags-table-buffer (not first-time)) | |
1286 (setq first-time nil) | |
1151 | 1287 (funcall tags-apropos-function regexp)))))) |
799 | 1288 |
1289 ;;; XXX Kludge interface. | |
342 | 1290 |
799 | 1291 ;; XXX If a file is in multiple tables, selection may get the wrong one. |
804 | 1292 ;;;###autoload |
799 | 1293 (defun select-tags-table () |
1294 "Select a tags table file from a menu of those you have already used. | |
1295 The list of tags tables to select from is stored in `tags-table-file-list'; | |
1296 see the doc of that variable if you want to add names to the list." | |
1297 (interactive) | |
1298 (pop-to-buffer "*Tags Table List*") | |
1299 (setq buffer-read-only nil) | |
1300 (erase-buffer) | |
1301 (setq selective-display t | |
1302 selective-display-ellipses nil) | |
1303 (let ((set-list tags-table-set-list) | |
1304 (desired-point nil)) | |
1305 (if tags-table-list | |
1306 (progn | |
1307 (setq desired-point (point-marker)) | |
1308 (princ tags-table-list (current-buffer)) | |
1309 (insert "\C-m") | |
1310 (prin1 (car tags-table-list) (current-buffer)) ;invisible | |
1311 (insert "\n"))) | |
1312 (while set-list | |
1313 (if (eq (car set-list) tags-table-list) | |
1314 ;; Already printed it. | |
1315 () | |
1316 (princ (car set-list) (current-buffer)) | |
1317 (insert "\C-m") | |
1318 (prin1 (car (car set-list)) (current-buffer)) ;invisible | |
1319 (insert "\n")) | |
1320 (setq set-list (cdr set-list))) | |
1321 (if tags-file-name | |
1322 (progn | |
1323 (or desired-point | |
1324 (setq desired-point (point-marker))) | |
1325 (insert tags-file-name "\C-m") | |
1326 (prin1 tags-file-name (current-buffer)) ;invisible | |
1327 (insert "\n"))) | |
1328 (setq set-list (delete tags-file-name | |
1329 (apply 'nconc (cons tags-table-list | |
1330 (mapcar 'copy-sequence | |
1331 tags-table-set-list))))) | |
1332 (while set-list | |
1333 (insert (car set-list) "\C-m") | |
1334 (prin1 (car set-list) (current-buffer)) ;invisible | |
1335 (insert "\n") | |
1336 (setq set-list (delete (car set-list) set-list))) | |
1337 (goto-char 1) | |
1338 (insert-before-markers | |
1339 "Type `t' to select a tags table or set of tags tables:\n\n") | |
1340 (if desired-point | |
1341 (goto-char desired-point)) | |
1342 (set-window-start (selected-window) 1 t)) | |
1343 (set-buffer-modified-p nil) | |
1344 (setq buffer-read-only t | |
1345 mode-name "Select Tags Table") | |
1346 (let ((map (make-sparse-keymap))) | |
1347 (define-key map "t" 'select-tags-table-select) | |
1348 (define-key map " " 'next-line) | |
1349 (define-key map "\^?" 'previous-line) | |
1350 (define-key map "n" 'next-line) | |
1351 (define-key map "p" 'previous-line) | |
1352 (define-key map "q" 'select-tags-table-quit) | |
1353 (use-local-map map))) | |
1354 | |
1355 (defun select-tags-table-select () | |
1356 "Select the tags table named on this line." | |
1357 (interactive) | |
1358 (search-forward "\C-m") | |
1359 (let ((name (read (current-buffer)))) | |
1360 (visit-tags-table name) | |
1361 (select-tags-table-quit) | |
1362 (message "Tags table now %s" name))) | |
1363 | |
1364 (defun select-tags-table-quit () | |
1365 "Kill the buffer and delete the selected window." | |
1366 (interactive) | |
1367 (kill-buffer (current-buffer)) | |
1368 (or (one-window-p) | |
1369 (delete-window))) | |
1370 | |
360 | 1371 ;;;###autoload |
799 | 1372 (defun complete-tag () |
1373 "Perform tags completion on the text around point. | |
1374 Completes to the set of names listed in the current tags table. | |
1375 The string to complete is chosen in the same way as the default | |
981 | 1376 for \\[find-tag] (which see)." |
799 | 1377 (interactive) |
981 | 1378 (or tags-table-list |
1379 tags-file-name | |
1380 (error (substitute-command-keys | |
1381 "No tags table loaded. Try \\[visit-tags-table]."))) | |
799 | 1382 (let ((pattern (funcall (or find-tag-default-function |
1383 (get major-mode 'find-tag-default-function) | |
1384 'find-tag-default))) | |
1385 beg | |
1386 completion) | |
1387 (or pattern | |
1388 (error "Nothing to complete")) | |
1389 (search-backward pattern) | |
1390 (setq beg (point)) | |
1391 (forward-char (length pattern)) | |
1392 (setq completion (try-completion pattern 'tags-complete-tag nil)) | |
1393 (cond ((eq completion t)) | |
1394 ((null completion) | |
1395 (message "Can't find completion for \"%s\"" pattern) | |
1396 (ding)) | |
1397 ((not (string= pattern completion)) | |
1398 (delete-region beg (point)) | |
1399 (insert completion)) | |
1400 (t | |
1401 (message "Making completion list...") | |
1402 (with-output-to-temp-buffer " *Completions*" | |
1403 (display-completion-list | |
1404 (all-completions pattern 'tags-complete-tag nil))) | |
1405 (message "Making completion list...%s" "done"))))) | |
884 | 1406 |
1407 ;;;###autoload (define-key esc-map "\t" 'complete-tag) | |
799 | 1408 |
584 | 1409 (provide 'etags) |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1410 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1411 ;;; etags.el ends here |