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