Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / progmodes / etags.el
blobdc81a02c61518ddc56a08b4af623f0756e5beec3
1 ;;; etags.el --- etags facility for Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 1985-1986, 1988-1989, 1992-1996, 1998, 2000-2014 Free
4 ;; Software Foundation, Inc.
6 ;; Author: Roland McGrath <roland@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: tools
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;;; Code:
29 (require 'ring)
30 (require 'button)
32 ;;;###autoload
33 (defvar tags-file-name nil
34 "File name of tags table.
35 To switch to a new tags table, setting this variable is sufficient.
36 If you set this variable, do not also set `tags-table-list'.
37 Use the `etags' program to make a tags table file.")
38 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table.
39 ;;;###autoload (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: "))
40 ;;;###autoload (put 'tags-file-name 'safe-local-variable 'stringp)
42 (defgroup etags nil "Tags tables."
43 :group 'tools)
45 ;;;###autoload
46 (defcustom tags-case-fold-search 'default
47 "Whether tags operations should be case-sensitive.
48 A value of t means case-insensitive, a value of nil means case-sensitive.
49 Any other value means use the setting of `case-fold-search'."
50 :group 'etags
51 :type '(choice (const :tag "Case-sensitive" nil)
52 (const :tag "Case-insensitive" t)
53 (other :tag "Use default" default))
54 :version "21.1")
56 ;;;###autoload
57 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list.
58 (defcustom tags-table-list nil
59 "List of file names of tags tables to search.
60 An element that is a directory means the file \"TAGS\" in that directory.
61 To switch to a new list of tags tables, setting this variable is sufficient.
62 If you set this variable, do not also set `tags-file-name'.
63 Use the `etags' program to make a tags table file."
64 :group 'etags
65 :type '(repeat file))
67 ;;;###autoload
68 (defcustom tags-compression-info-list
69 (purecopy '("" ".Z" ".bz2" ".gz" ".xz" ".tgz"))
70 "List of extensions tried by etags when `auto-compression-mode' is on.
71 An empty string means search the non-compressed file."
72 :version "24.1" ; added xz
73 :type '(repeat string)
74 :group 'etags)
76 ;; !!! tags-compression-info-list should probably be replaced by access
77 ;; to directory list and matching jka-compr-compression-info-list. Currently,
78 ;; this implementation forces each modification of
79 ;; jka-compr-compression-info-list to be reflected in this var.
80 ;; An alternative could be to say that introducing a special
81 ;; element in this list (e.g. t) means : try at this point
82 ;; using directory listing and regexp matching using
83 ;; jka-compr-compression-info-list.
86 ;;;###autoload
87 (defcustom tags-add-tables 'ask-user
88 "Control whether to add a new tags table to the current list.
89 t means do; nil means don't (always start a new list).
90 Any other value means ask the user whether to add a new tags table
91 to the current list (as opposed to starting a new list)."
92 :group 'etags
93 :type '(choice (const :tag "Do" t)
94 (const :tag "Don't" nil)
95 (other :tag "Ask" ask-user)))
97 (defcustom tags-revert-without-query nil
98 "Non-nil means reread a TAGS table without querying, if it has changed."
99 :group 'etags
100 :type 'boolean)
102 (defvar tags-table-computed-list nil
103 "List of tags tables to search, computed from `tags-table-list'.
104 This includes tables implicitly included by other tables. The list is not
105 always complete: the included tables of a table are not known until that
106 table is read into core. An element that is t is a placeholder
107 indicating that the preceding element is a table that has not been read
108 into core and might contain included tables to search.
109 See `tags-table-check-computed-list'.")
111 (defvar tags-table-computed-list-for nil
112 "Value of `tags-table-list' that `tags-table-computed-list' corresponds to.
113 If `tags-table-list' changes, `tags-table-computed-list' is thrown away and
114 recomputed; see `tags-table-check-computed-list'.")
116 (defvar tags-table-list-pointer nil
117 "Pointer into `tags-table-computed-list' for the current state of searching.
118 Use `visit-tags-table-buffer' to cycle through tags tables in this list.")
120 (defvar tags-table-list-started-at nil
121 "Pointer into `tags-table-computed-list', where the current search started.")
123 (defvar tags-table-set-list nil
124 "List of sets of tags table which have been used together in the past.
125 Each element is a list of strings which are file names.")
127 ;;;###autoload
128 (defcustom find-tag-hook nil
129 "Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'.
130 The value in the buffer in which \\[find-tag] is done is used,
131 not the value in the buffer \\[find-tag] goes to."
132 :group 'etags
133 :type 'hook)
135 ;;;###autoload
136 (defcustom find-tag-default-function nil
137 "A function of no arguments used by \\[find-tag] to pick a default tag.
138 If nil, and the symbol that is the value of `major-mode'
139 has a `find-tag-default-function' property (see `put'), that is used.
140 Otherwise, `find-tag-default' is used."
141 :group 'etags
142 :type '(choice (const nil) function))
144 (defcustom find-tag-marker-ring-length 16
145 "Length of marker rings `find-tag-marker-ring' and `tags-location-ring'."
146 :group 'etags
147 :type 'integer
148 :version "20.3")
150 (defcustom tags-tag-face 'default
151 "Face for tags in the output of `tags-apropos'."
152 :group 'etags
153 :type 'face
154 :version "21.1")
156 (defcustom tags-apropos-verbose nil
157 "If non-nil, print the name of the tags file in the *Tags List* buffer."
158 :group 'etags
159 :type 'boolean
160 :version "21.1")
162 (defcustom tags-apropos-additional-actions nil
163 "Specify additional actions for `tags-apropos'.
165 If non-nil, value should be a list of triples (TITLE FUNCTION
166 TO-SEARCH). For each triple, `tags-apropos' processes TO-SEARCH and
167 lists tags from it. TO-SEARCH should be an alist, obarray, or symbol.
168 If it is a symbol, the symbol's value is used.
169 TITLE, a string, is a title used to label the additional list of tags.
170 FUNCTION is a function to call when a symbol is selected in the
171 *Tags List* buffer. It will be called with one argument SYMBOL which
172 is the symbol being selected.
174 Example value:
176 '((\"Emacs Lisp\" Info-goto-emacs-command-node obarray)
177 (\"Common Lisp\" common-lisp-hyperspec common-lisp-hyperspec-obarray)
178 (\"SCWM\" scwm-documentation scwm-obarray))"
179 :group 'etags
180 :type '(repeat (list (string :tag "Title")
181 function
182 (sexp :tag "Tags to search")))
183 :version "21.1")
185 (defvar find-tag-marker-ring (make-ring find-tag-marker-ring-length)
186 "Ring of markers which are locations from which \\[find-tag] was invoked.")
188 (defvar default-tags-table-function nil
189 "If non-nil, a function to choose a default tags file for a buffer.
190 This function receives no arguments and should return the default
191 tags table file to use for the current buffer.")
193 (defvar tags-location-ring (make-ring find-tag-marker-ring-length)
194 "Ring of markers which are locations visited by \\[find-tag].
195 Pop back to the last location with \\[negative-argument] \\[find-tag].")
197 ;; Tags table state.
198 ;; These variables are local in tags table buffers.
200 (defvar tags-table-files nil
201 "List of file names covered by current tags table.
202 nil means it has not yet been computed;
203 use function `tags-table-files' to do so.")
205 (defvar tags-completion-table nil
206 "Obarray of tag names defined in current tags table.")
208 (defvar tags-included-tables nil
209 "List of tags tables included by the current tags table.")
211 (defvar next-file-list nil
212 "List of files for \\[next-file] to process.")
214 ;; Hooks for file formats.
216 (defvar tags-table-format-functions '(etags-recognize-tags-table
217 tags-recognize-empty-tags-table)
218 "Hook to be called in a tags table buffer to identify the type of tags table.
219 The functions are called in order, with no arguments,
220 until one returns non-nil. The function should make buffer-local bindings
221 of the format-parsing tags function variables if successful.")
223 (defvar file-of-tag-function nil
224 "Function to do the work of `file-of-tag' (which see).
225 One optional argument, a boolean specifying to return complete path (nil) or
226 relative path (non-nil).")
227 (defvar tags-table-files-function nil
228 "Function to do the work of function `tags-table-files' (which see).")
229 (defvar tags-completion-table-function nil
230 "Function to build the `tags-completion-table'.")
231 (defvar snarf-tag-function nil
232 "Function to get info about a matched tag for `goto-tag-location-function'.
233 One optional argument, specifying to use explicit tag (non-nil) or not (nil).
234 The default is nil.")
235 (defvar goto-tag-location-function nil
236 "Function of to go to the location in the buffer specified by a tag.
237 One argument, the tag info returned by `snarf-tag-function'.")
238 (defvar find-tag-regexp-search-function nil
239 "Search function passed to `find-tag-in-order' for finding a regexp tag.")
240 (defvar find-tag-regexp-tag-order nil
241 "Tag order passed to `find-tag-in-order' for finding a regexp tag.")
242 (defvar find-tag-regexp-next-line-after-failure-p nil
243 "Flag passed to `find-tag-in-order' for finding a regexp tag.")
244 (defvar find-tag-search-function nil
245 "Search function passed to `find-tag-in-order' for finding a tag.")
246 (defvar find-tag-tag-order nil
247 "Tag order passed to `find-tag-in-order' for finding a tag.")
248 (defvar find-tag-next-line-after-failure-p nil
249 "Flag passed to `find-tag-in-order' for finding a tag.")
250 (defvar list-tags-function nil
251 "Function to do the work of `list-tags' (which see).")
252 (defvar tags-apropos-function nil
253 "Function to do the work of `tags-apropos' (which see).")
254 (defvar tags-included-tables-function nil
255 "Function to do the work of function `tags-included-tables' (which see).")
256 (defvar verify-tags-table-function nil
257 "Function to return t if current buffer contains valid tags file.")
259 (defun initialize-new-tags-table ()
260 "Initialize the tags table in the current buffer.
261 Return non-nil if it is a valid tags table, and
262 in that case, also make the tags table state variables
263 buffer-local and set them to nil."
264 (set (make-local-variable 'tags-table-files) nil)
265 (set (make-local-variable 'tags-completion-table) nil)
266 (set (make-local-variable 'tags-included-tables) nil)
267 ;; We used to initialize find-tag-marker-ring and tags-location-ring
268 ;; here, to new empty rings. But that is wrong, because those
269 ;; are global.
271 ;; Value is t if we have found a valid tags table buffer.
272 (run-hook-with-args-until-success 'tags-table-format-functions))
274 ;;;###autoload
275 (defun tags-table-mode ()
276 "Major mode for tags table file buffers."
277 (interactive)
278 (setq major-mode 'tags-table-mode ;FIXME: Use define-derived-mode.
279 mode-name "Tags Table"
280 buffer-undo-list t)
281 (initialize-new-tags-table))
283 ;;;###autoload
284 (defun visit-tags-table (file &optional local)
285 "Tell tags commands to use tags table file FILE.
286 FILE should be the name of a file created with the `etags' program.
287 A directory name is ok too; it means file TAGS in that directory.
289 Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
290 With a prefix arg, set the buffer-local value instead.
291 When you find a tag with \\[find-tag], the buffer it finds the tag
292 in is given a local value of this variable which is the name of the tags
293 file the tag was in."
294 (interactive (list (read-file-name "Visit tags table (default TAGS): "
295 default-directory
296 (expand-file-name "TAGS"
297 default-directory)
299 current-prefix-arg))
300 (or (stringp file) (signal 'wrong-type-argument (list 'stringp file)))
301 ;; Bind tags-file-name so we can control below whether the local or
302 ;; global value gets set.
303 ;; Calling visit-tags-table-buffer with tags-file-name set to FILE will
304 ;; initialize a buffer for FILE and set tags-file-name to the
305 ;; fully-expanded name.
306 (let ((tags-file-name file))
307 (save-excursion
308 (or (visit-tags-table-buffer file)
309 (signal 'file-error (list "Visiting tags table"
310 "file does not exist"
311 file)))
312 ;; Set FILE to the expanded name.
313 (setq file tags-file-name)))
314 (if local
315 ;; Set the local value of tags-file-name.
316 (set (make-local-variable 'tags-file-name) file)
317 ;; Set the global value of tags-file-name.
318 (setq-default tags-file-name file)))
320 (defun tags-table-check-computed-list ()
321 "Compute `tags-table-computed-list' from `tags-table-list' if necessary."
322 (let ((expanded-list (mapcar 'tags-expand-table-name tags-table-list)))
323 (or (equal tags-table-computed-list-for expanded-list)
324 ;; The list (or default-directory) has changed since last computed.
325 (let* ((compute-for (mapcar 'copy-sequence expanded-list))
326 (tables (copy-sequence compute-for)) ;Mutated in the loop.
327 (computed nil)
328 table-buffer)
330 (while tables
331 (setq computed (cons (car tables) computed)
332 table-buffer (get-file-buffer (car tables)))
333 (if (and table-buffer
334 ;; There is a buffer visiting the file. Now make sure
335 ;; it is initialized as a tag table buffer.
336 (save-excursion
337 (tags-verify-table (buffer-file-name table-buffer))))
338 (with-current-buffer table-buffer
339 ;; Needed so long as etags-tags-included-tables
340 ;; does not save-excursion.
341 (save-excursion
342 (if (tags-included-tables)
343 ;; Insert the included tables into the list we
344 ;; are processing.
345 (setcdr tables (nconc (mapcar 'tags-expand-table-name
346 (tags-included-tables))
347 (cdr tables))))))
348 ;; This table is not in core yet. Insert a placeholder
349 ;; saying we must read it into core to check for included
350 ;; tables before searching the next table in the list.
351 (setq computed (cons t computed)))
352 (setq tables (cdr tables)))
354 ;; Record the tags-table-list value (and the context of the
355 ;; current directory) we computed from.
356 (setq tags-table-computed-list-for compute-for
357 tags-table-computed-list (nreverse computed))))))
359 (defun tags-table-extend-computed-list ()
360 "Extend `tags-table-computed-list' to remove the first t placeholder.
362 An element of the list that is t is a placeholder indicating that the
363 preceding element is a table that has not been read in and might
364 contain included tables to search. This function reads in the first
365 such table and puts its included tables into the list."
366 (let ((list tags-table-computed-list))
367 (while (not (eq (nth 1 list) t))
368 (setq list (cdr list)))
369 (save-excursion
370 (if (tags-verify-table (car list))
371 ;; We are now in the buffer visiting (car LIST). Extract its
372 ;; list of included tables and insert it into the computed list.
373 (let ((tables (tags-included-tables))
374 (computed nil)
375 table-buffer)
376 (while tables
377 (setq computed (cons (car tables) computed)
378 table-buffer (get-file-buffer (car tables)))
379 (if table-buffer
380 (with-current-buffer table-buffer
381 (if (tags-included-tables)
382 ;; Insert the included tables into the list we
383 ;; are processing.
384 (setcdr tables (append (tags-included-tables)
385 tables))))
386 ;; This table is not in core yet. Insert a placeholder
387 ;; saying we must read it into core to check for included
388 ;; tables before searching the next table in the list.
389 (setq computed (cons t computed)))
390 (setq tables (cdr tables)))
391 (setq computed (nreverse computed))
392 ;; COMPUTED now contains the list of included tables (and
393 ;; tables included by them, etc.). Now splice this into the
394 ;; current list.
395 (setcdr list (nconc computed (cdr (cdr list)))))
396 ;; It was not a valid table, so just remove the following placeholder.
397 (setcdr list (cdr (cdr list)))))))
399 (defun tags-expand-table-name (file)
400 "Expand tags table name FILE into a complete file name."
401 (setq file (expand-file-name file))
402 (if (file-directory-p file)
403 (expand-file-name "TAGS" file)
404 file))
406 ;; Like member, but comparison is done after tags-expand-table-name on both
407 ;; sides and elements of LIST that are t are skipped.
408 (defun tags-table-list-member (file list)
409 "Like (member FILE LIST) after applying `tags-expand-table-name'.
410 More precisely, apply `tags-expand-table-name' to FILE
411 and each element of LIST, returning the link whose car is the first match.
412 If an element of LIST is t, ignore it."
413 (setq file (tags-expand-table-name file))
414 (while (and list
415 (or (eq (car list) t)
416 (not (string= file (tags-expand-table-name (car list))))))
417 (setq list (cdr list)))
418 list)
420 (defun tags-verify-table (file)
421 "Read FILE into a buffer and verify that it is a valid tags table.
422 Sets the current buffer to one visiting FILE (if it exists).
423 Returns non-nil if it is a valid table."
424 (if (get-file-buffer file)
425 ;; The file is already in a buffer. Check for the visited file
426 ;; having changed since we last used it.
427 (progn
428 (set-buffer (get-file-buffer file))
429 (or verify-tags-table-function (tags-table-mode))
430 (if (or (verify-visited-file-modtime (current-buffer))
431 ;; Decide whether to revert the file.
432 ;; revert-without-query can say to revert
433 ;; or the user can say to revert.
434 (not (or (let ((tail revert-without-query)
435 (found nil))
436 (while tail
437 (if (string-match (car tail) buffer-file-name)
438 (setq found t))
439 (setq tail (cdr tail)))
440 found)
441 tags-revert-without-query
442 (yes-or-no-p
443 (format "Tags file %s has changed, read new contents? "
444 file)))))
445 (and verify-tags-table-function
446 (funcall verify-tags-table-function))
447 (revert-buffer t t)
448 (tags-table-mode)))
449 (when (file-exists-p file)
450 (let* ((buf (find-file-noselect file))
451 (newfile (buffer-file-name buf)))
452 (unless (string= file newfile)
453 ;; find-file-noselect has changed the file name.
454 ;; Propagate the change to tags-file-name and tags-table-list.
455 (let ((tail (member file tags-table-list)))
456 (if tail (setcar tail newfile)))
457 (if (eq file tags-file-name) (setq tags-file-name newfile)))
458 ;; Only change buffer now that we're done using potentially
459 ;; buffer-local variables.
460 (set-buffer buf)
461 (tags-table-mode)))))
463 ;; Subroutine of visit-tags-table-buffer. Search the current tags tables
464 ;; for one that has tags for THIS-FILE (or that includes a table that
465 ;; does). Return the name of the first table listing THIS-FILE; if
466 ;; the table is one included by another table, it is the master table that
467 ;; we return. If CORE-ONLY is non-nil, check only tags tables that are
468 ;; already in buffers--don't visit any new files.
469 (defun tags-table-including (this-file core-only)
470 "Search current tags tables for tags for THIS-FILE.
471 Subroutine of `visit-tags-table-buffer'.
472 Looks for a tags table that has such tags or that includes a table
473 that has them. Returns the name of the first such table.
474 Non-nil CORE-ONLY means check only tags tables that are already in
475 buffers. If CORE-ONLY is nil, it is ignored."
476 (let ((tables tags-table-computed-list)
477 (found nil))
478 ;; Loop over the list, looking for a table containing tags for THIS-FILE.
479 (while (and (not found)
480 tables)
482 (if core-only
483 ;; Skip tables not in core.
484 (while (eq (nth 1 tables) t)
485 (setq tables (cdr (cdr tables))))
486 (if (eq (nth 1 tables) t)
487 ;; This table has not been read into core yet. Read it in now.
488 (tags-table-extend-computed-list)))
490 (if tables
491 ;; Select the tags table buffer and get the file list up to date.
492 (let ((tags-file-name (car tables)))
493 (visit-tags-table-buffer 'same)
494 (if (member this-file (mapcar 'expand-file-name
495 (tags-table-files)))
496 ;; Found it.
497 (setq found tables))))
498 (setq tables (cdr tables)))
499 (if found
500 ;; Now determine if the table we found was one included by another
501 ;; table, not explicitly listed. We do this by checking each
502 ;; element of the computed list to see if it appears in the user's
503 ;; explicit list; the last element we will check is FOUND itself.
504 ;; Then we return the last one which did in fact appear in
505 ;; tags-table-list.
506 (let ((could-be nil)
507 (elt tags-table-computed-list))
508 (while (not (eq elt (cdr found)))
509 (if (tags-table-list-member (car elt) tags-table-list)
510 ;; This table appears in the user's list, so it could be
511 ;; the one which includes the table we found.
512 (setq could-be (car elt)))
513 (setq elt (cdr elt))
514 (if (eq t (car elt))
515 (setq elt (cdr elt))))
516 ;; The last element we found in the computed list before FOUND
517 ;; that appears in the user's list will be the table that
518 ;; included the one we found.
519 could-be))))
521 (defun tags-next-table ()
522 "Move `tags-table-list-pointer' along and set `tags-file-name'.
523 Subroutine of `visit-tags-table-buffer'.\
524 Returns nil when out of tables."
525 ;; If there is a placeholder element next, compute the list to replace it.
526 (while (eq (nth 1 tags-table-list-pointer) t)
527 (tags-table-extend-computed-list))
529 ;; Go to the next table in the list.
530 (setq tags-table-list-pointer (cdr tags-table-list-pointer))
531 (or tags-table-list-pointer
532 ;; Wrap around.
533 (setq tags-table-list-pointer tags-table-computed-list))
535 (if (eq tags-table-list-pointer tags-table-list-started-at)
536 ;; We have come full circle. No more tables.
537 (setq tags-table-list-pointer nil)
538 ;; Set tags-file-name to the name from the list. It is already expanded.
539 (setq tags-file-name (car tags-table-list-pointer))))
541 ;;;###autoload
542 (defun visit-tags-table-buffer (&optional cont)
543 "Select the buffer containing the current tags table.
544 If optional arg is a string, visit that file as a tags table.
545 If optional arg is t, visit the next table in `tags-table-list'.
546 If optional arg is the atom `same', don't look for a new table;
547 just select the buffer visiting `tags-file-name'.
548 If arg is nil or absent, choose a first buffer from information in
549 `tags-file-name', `tags-table-list', `tags-table-list-pointer'.
550 Returns t if it visits a tags table, or nil if there are no more in the list."
552 ;; Set tags-file-name to the tags table file we want to visit.
553 (cond ((eq cont 'same)
554 ;; Use the ambient value of tags-file-name.
555 (or tags-file-name
556 (user-error "%s"
557 (substitute-command-keys
558 (concat "No tags table in use; "
559 "use \\[visit-tags-table] to select one")))))
560 ((eq t cont)
561 ;; Find the next table.
562 (if (tags-next-table)
563 ;; Skip over nonexistent files.
564 (while (and (not (or (get-file-buffer tags-file-name)
565 (file-exists-p tags-file-name)))
566 (tags-next-table)))))
568 ;; Pick a table out of our hat.
569 (tags-table-check-computed-list) ;Get it up to date, we might use it.
570 (setq tags-file-name
572 ;; If passed a string, use that.
573 (if (stringp cont)
574 (prog1 cont
575 (setq cont nil)))
576 ;; First, try a local variable.
577 (cdr (assq 'tags-file-name (buffer-local-variables)))
578 ;; Second, try a user-specified function to guess.
579 (and default-tags-table-function
580 (funcall default-tags-table-function))
581 ;; Third, look for a tags table that contains tags for the
582 ;; current buffer's file. If one is found, the lists will
583 ;; be frobnicated, and CONT will be set non-nil so we don't
584 ;; do it below.
585 (and buffer-file-name
587 ;; First check only tables already in buffers.
588 (tags-table-including buffer-file-name t)
589 ;; Since that didn't find any, now do the
590 ;; expensive version: reading new files.
591 (tags-table-including buffer-file-name nil)))
592 ;; Fourth, use the user variable tags-file-name, if it is
593 ;; not already in the current list.
594 (and tags-file-name
595 (not (tags-table-list-member tags-file-name
596 tags-table-computed-list))
597 tags-file-name)
598 ;; Fifth, use the user variable giving the table list.
599 ;; Find the first element of the list that actually exists.
600 (let ((list tags-table-list)
601 file)
602 (while (and list
603 (setq file (tags-expand-table-name (car list)))
604 (not (get-file-buffer file))
605 (not (file-exists-p file)))
606 (setq list (cdr list)))
607 (car list))
608 ;; Finally, prompt the user for a file name.
609 (expand-file-name
610 (read-file-name "Visit tags table (default TAGS): "
611 default-directory
612 "TAGS"
613 t))))))
615 ;; Expand the table name into a full file name.
616 (setq tags-file-name (tags-expand-table-name tags-file-name))
618 (unless (and (eq cont t) (null tags-table-list-pointer))
619 ;; Verify that tags-file-name names a valid tags table.
620 ;; Bind another variable with the value of tags-file-name
621 ;; before we switch buffers, in case tags-file-name is buffer-local.
622 (let ((curbuf (current-buffer))
623 (local-tags-file-name tags-file-name))
624 (if (tags-verify-table local-tags-file-name)
626 ;; We have a valid tags table.
627 (progn
628 ;; Bury the tags table buffer so it
629 ;; doesn't get in the user's way.
630 (bury-buffer (current-buffer))
632 ;; If this was a new table selection (CONT is nil), make
633 ;; sure tags-table-list includes the chosen table, and
634 ;; update the list pointer variables.
635 (or cont
636 ;; Look in the list for the table we chose.
637 (let ((found (tags-table-list-member
638 local-tags-file-name
639 tags-table-computed-list)))
640 (if found
641 ;; There it is. Just switch to it.
642 (setq tags-table-list-pointer found
643 tags-table-list-started-at found)
645 ;; The table is not in the current set.
646 ;; Try to find it in another previously used set.
647 (let ((sets tags-table-set-list))
648 (while (and sets
649 (not (tags-table-list-member
650 local-tags-file-name
651 (car sets))))
652 (setq sets (cdr sets)))
653 (if sets
654 ;; Found in some other set. Switch to that set.
655 (progn
656 (or (memq tags-table-list tags-table-set-list)
657 ;; Save the current list.
658 (setq tags-table-set-list
659 (cons tags-table-list
660 tags-table-set-list)))
661 (setq tags-table-list (car sets)))
663 ;; Not found in any existing set.
664 (if (and tags-table-list
665 (or (eq t tags-add-tables)
666 (and tags-add-tables
667 (y-or-n-p
668 (concat "Keep current list of "
669 "tags tables also? ")))))
670 ;; Add it to the current list.
671 (setq tags-table-list (cons local-tags-file-name
672 tags-table-list))
674 ;; Make a fresh list, and store the old one.
675 (message "Starting a new list of tags tables")
676 (or (null tags-table-list)
677 (memq tags-table-list tags-table-set-list)
678 (setq tags-table-set-list
679 (cons tags-table-list
680 tags-table-set-list)))
681 ;; Clear out buffers holding old tables.
682 (dolist (table tags-table-list)
683 ;; The list can contain items t.
684 (if (stringp table)
685 (let ((buffer (find-buffer-visiting table)))
686 (if buffer
687 (kill-buffer buffer)))))
688 (setq tags-table-list (list local-tags-file-name))))
690 ;; Recompute tags-table-computed-list.
691 (tags-table-check-computed-list)
692 ;; Set the tags table list state variables to start
693 ;; over from tags-table-computed-list.
694 (setq tags-table-list-started-at tags-table-computed-list
695 tags-table-list-pointer
696 tags-table-computed-list)))))
698 ;; Return of t says the tags table is valid.
701 ;; The buffer was not valid. Don't use it again.
702 (set-buffer curbuf)
703 (kill-local-variable 'tags-file-name)
704 (if (eq local-tags-file-name tags-file-name)
705 (setq tags-file-name nil))
706 (user-error (if (file-exists-p local-tags-file-name)
707 "File %s is not a valid tags table"
708 "File %s does not exist")
709 local-tags-file-name)))))
711 (defun tags-reset-tags-tables ()
712 "Reset tags state to cancel effect of any previous \\[visit-tags-table] or \\[find-tag]."
713 (interactive)
714 ;; Clear out the markers we are throwing away.
715 (let ((i 0))
716 (while (< i find-tag-marker-ring-length)
717 (if (aref (cddr tags-location-ring) i)
718 (set-marker (aref (cddr tags-location-ring) i) nil))
719 (if (aref (cddr find-tag-marker-ring) i)
720 (set-marker (aref (cddr find-tag-marker-ring) i) nil))
721 (setq i (1+ i))))
722 (setq tags-file-name nil
723 tags-location-ring (make-ring find-tag-marker-ring-length)
724 find-tag-marker-ring (make-ring find-tag-marker-ring-length)
725 tags-table-list nil
726 tags-table-computed-list nil
727 tags-table-computed-list-for nil
728 tags-table-list-pointer nil
729 tags-table-list-started-at nil
730 tags-table-set-list nil))
732 (defun file-of-tag (&optional relative)
733 "Return the file name of the file whose tags point is within.
734 Assumes the tags table is the current buffer.
735 If RELATIVE is non-nil, file name returned is relative to tags
736 table file's directory. If RELATIVE is nil, file name returned
737 is complete."
738 (funcall file-of-tag-function relative))
740 ;;;###autoload
741 (defun tags-table-files ()
742 "Return a list of files in the current tags table.
743 Assumes the tags table is the current buffer. The file names are returned
744 as they appeared in the `etags' command that created the table, usually
745 without directory names."
746 (or tags-table-files
747 (setq tags-table-files
748 (funcall tags-table-files-function))))
750 (defun tags-included-tables ()
751 "Return a list of tags tables included by the current table.
752 Assumes the tags table is the current buffer."
753 (or tags-included-tables
754 (setq tags-included-tables (funcall tags-included-tables-function))))
756 (defun tags-completion-table ()
757 "Build `tags-completion-table' on demand.
758 The tags included in the completion table are those in the current
759 tags table and its (recursively) included tags tables."
760 (or tags-completion-table
761 ;; No cached value for this buffer.
762 (condition-case ()
763 (let (current-table combined-table)
764 (message "Making tags completion table for %s..." buffer-file-name)
765 (save-excursion
766 ;; Iterate over the current list of tags tables.
767 (while (visit-tags-table-buffer (and combined-table t))
768 ;; Find possible completions in this table.
769 (setq current-table (funcall tags-completion-table-function))
770 ;; Merge this buffer's completions into the combined table.
771 (if combined-table
772 (mapatoms
773 (lambda (sym) (intern (symbol-name sym) combined-table))
774 current-table)
775 (setq combined-table current-table))))
776 (message "Making tags completion table for %s...done"
777 buffer-file-name)
778 ;; Cache the result in a buffer-local variable.
779 (setq tags-completion-table combined-table))
780 (quit (message "Tags completion table construction aborted.")
781 (setq tags-completion-table nil)))))
783 (defun tags-lazy-completion-table ()
784 (let ((buf (current-buffer)))
785 (lambda (string pred action)
786 (with-current-buffer buf
787 (save-excursion
788 ;; If we need to ask for the tag table, allow that.
789 (let ((enable-recursive-minibuffers t))
790 (visit-tags-table-buffer))
791 (complete-with-action action (tags-completion-table) string pred))))))
793 ;;;###autoload (defun tags-completion-at-point-function ()
794 ;;;###autoload (if (or tags-table-list tags-file-name)
795 ;;;###autoload (progn
796 ;;;###autoload (load "etags")
797 ;;;###autoload (tags-completion-at-point-function))))
799 (defun tags-completion-at-point-function ()
800 "Using tags, return a completion table for the text around point.
801 If no tags table is loaded, do nothing and return nil."
802 (when (or tags-table-list tags-file-name)
803 (let ((completion-ignore-case (if (memq tags-case-fold-search '(t nil))
804 tags-case-fold-search
805 case-fold-search))
806 (pattern (funcall (or find-tag-default-function
807 (get major-mode 'find-tag-default-function)
808 'find-tag-default)))
809 beg)
810 (when pattern
811 (save-excursion
812 (forward-char (1- (length pattern)))
813 (search-backward pattern)
814 (setq beg (point))
815 (forward-char (length pattern))
816 (list beg (point) (tags-lazy-completion-table) :exclusive 'no))))))
818 (defun find-tag-tag (string)
819 "Read a tag name, with defaulting and completion."
820 (let* ((completion-ignore-case (if (memq tags-case-fold-search '(t nil))
821 tags-case-fold-search
822 case-fold-search))
823 (default (funcall (or find-tag-default-function
824 (get major-mode 'find-tag-default-function)
825 'find-tag-default)))
826 (spec (completing-read (if default
827 (format "%s (default %s): "
828 (substring string 0 (string-match "[ :]+\\'" string))
829 default)
830 string)
831 (tags-lazy-completion-table)
832 nil nil nil nil default)))
833 (if (equal spec "")
834 (or default (user-error "There is no default tag"))
835 spec)))
837 (defvar last-tag nil
838 "Last tag found by \\[find-tag].")
840 (defun find-tag-interactive (prompt &optional no-default)
841 "Get interactive arguments for tag functions.
842 The functions using this are `find-tag-noselect',
843 `find-tag-other-window', and `find-tag-regexp'."
844 (if (and current-prefix-arg last-tag)
845 (list nil (if (< (prefix-numeric-value current-prefix-arg) 0)
848 (list (if no-default
849 (read-string prompt)
850 (find-tag-tag prompt)))))
852 (defvar find-tag-history nil) ; Doc string?
854 ;; Dynamic bondage:
855 (defvar etags-case-fold-search)
856 (defvar etags-syntax-table)
857 (defvar local-find-tag-hook)
859 ;;;###autoload
860 (defun find-tag-noselect (tagname &optional next-p regexp-p)
861 "Find tag (in current tags table) whose name contains TAGNAME.
862 Returns the buffer containing the tag's definition and moves its point there,
863 but does not select the buffer.
864 The default for TAGNAME is the expression in the buffer near point.
866 If second arg NEXT-P is t (interactively, with prefix arg), search for
867 another tag that matches the last tagname or regexp used. When there are
868 multiple matches for a tag, more exact matches are found first. If NEXT-P
869 is the atom `-' (interactively, with prefix arg that is a negative number
870 or just \\[negative-argument]), pop back to the previous tag gone to.
872 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
874 A marker representing the point when this command is invoked is pushed
875 onto a ring and may be popped back to with \\[pop-tag-mark].
876 Contrast this with the ring of marks gone to by the command.
878 See documentation of variable `tags-file-name'."
879 (interactive (find-tag-interactive "Find tag: "))
881 (setq find-tag-history (cons tagname find-tag-history))
882 ;; Save the current buffer's value of `find-tag-hook' before
883 ;; selecting the tags table buffer. For the same reason, save value
884 ;; of `tags-file-name' in case it has a buffer-local value.
885 (let ((local-find-tag-hook find-tag-hook))
886 (if (eq '- next-p)
887 ;; Pop back to a previous location.
888 (if (ring-empty-p tags-location-ring)
889 (user-error "No previous tag locations")
890 (let ((marker (ring-remove tags-location-ring 0)))
891 (prog1
892 ;; Move to the saved location.
893 (set-buffer (or (marker-buffer marker)
894 (error "The marked buffer has been deleted")))
895 (goto-char (marker-position marker))
896 ;; Kill that marker so it doesn't slow down editing.
897 (set-marker marker nil nil)
898 ;; Run the user's hook. Do we really want to do this for pop?
899 (run-hooks 'local-find-tag-hook))))
900 ;; Record whence we came.
901 (ring-insert find-tag-marker-ring (point-marker))
902 (if (and next-p last-tag)
903 ;; Find the same table we last used.
904 (visit-tags-table-buffer 'same)
905 ;; Pick a table to use.
906 (visit-tags-table-buffer)
907 ;; Record TAGNAME for a future call with NEXT-P non-nil.
908 (setq last-tag tagname))
909 ;; Record the location so we can pop back to it later.
910 (let ((marker (make-marker)))
911 (with-current-buffer
912 ;; find-tag-in-order does the real work.
913 (find-tag-in-order
914 (if (and next-p last-tag) last-tag tagname)
915 (if regexp-p
916 find-tag-regexp-search-function
917 find-tag-search-function)
918 (if regexp-p
919 find-tag-regexp-tag-order
920 find-tag-tag-order)
921 (if regexp-p
922 find-tag-regexp-next-line-after-failure-p
923 find-tag-next-line-after-failure-p)
924 (if regexp-p "matching" "containing")
925 (or (not next-p) (not last-tag)))
926 (set-marker marker (point))
927 (run-hooks 'local-find-tag-hook)
928 (ring-insert tags-location-ring marker)
929 (current-buffer))))))
931 ;;;###autoload
932 (defun find-tag (tagname &optional next-p regexp-p)
933 "Find tag (in current tags table) whose name contains TAGNAME.
934 Select the buffer containing the tag's definition, and move point there.
935 The default for TAGNAME is the expression in the buffer around or before point.
937 If second arg NEXT-P is t (interactively, with prefix arg), search for
938 another tag that matches the last tagname or regexp used. When there are
939 multiple matches for a tag, more exact matches are found first. If NEXT-P
940 is the atom `-' (interactively, with prefix arg that is a negative number
941 or just \\[negative-argument]), pop back to the previous tag gone to.
943 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
945 A marker representing the point when this command is invoked is pushed
946 onto a ring and may be popped back to with \\[pop-tag-mark].
947 Contrast this with the ring of marks gone to by the command.
949 See documentation of variable `tags-file-name'."
950 (interactive (find-tag-interactive "Find tag: "))
951 (let* ((buf (find-tag-noselect tagname next-p regexp-p))
952 (pos (with-current-buffer buf (point))))
953 (condition-case nil
954 (switch-to-buffer buf)
955 (error (pop-to-buffer buf)))
956 (goto-char pos)))
957 ;;;###autoload (define-key esc-map "." 'find-tag)
959 ;;;###autoload
960 (defun find-tag-other-window (tagname &optional next-p regexp-p)
961 "Find tag (in current tags table) whose name contains TAGNAME.
962 Select the buffer containing the tag's definition in another window, and
963 move point there. The default for TAGNAME is the expression in the buffer
964 around or before point.
966 If second arg NEXT-P is t (interactively, with prefix arg), search for
967 another tag that matches the last tagname or regexp used. When there are
968 multiple matches for a tag, more exact matches are found first. If NEXT-P
969 is negative (interactively, with prefix arg that is a negative number or
970 just \\[negative-argument]), pop back to the previous tag gone to.
972 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
974 A marker representing the point when this command is invoked is pushed
975 onto a ring and may be popped back to with \\[pop-tag-mark].
976 Contrast this with the ring of marks gone to by the command.
978 See documentation of variable `tags-file-name'."
979 (interactive (find-tag-interactive "Find tag other window: "))
981 ;; This hair is to deal with the case where the tag is found in the
982 ;; selected window's buffer; without the hair, point is moved in both
983 ;; windows. To prevent this, we save the selected window's point before
984 ;; doing find-tag-noselect, and restore it after.
985 (let* ((window-point (window-point))
986 (tagbuf (find-tag-noselect tagname next-p regexp-p))
987 (tagpoint (progn (set-buffer tagbuf) (point))))
988 (set-window-point (prog1
989 (selected-window)
990 (switch-to-buffer-other-window tagbuf)
991 ;; We have to set this new window's point; it
992 ;; might already have been displaying a
993 ;; different portion of tagbuf, in which case
994 ;; switch-to-buffer-other-window doesn't set
995 ;; the window's point from the buffer.
996 (set-window-point (selected-window) tagpoint))
997 window-point)))
998 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window)
1000 ;;;###autoload
1001 (defun find-tag-other-frame (tagname &optional next-p)
1002 "Find tag (in current tags table) whose name contains TAGNAME.
1003 Select the buffer containing the tag's definition in another frame, and
1004 move point there. The default for TAGNAME is the expression in the buffer
1005 around or before point.
1007 If second arg NEXT-P is t (interactively, with prefix arg), search for
1008 another tag that matches the last tagname or regexp used. When there are
1009 multiple matches for a tag, more exact matches are found first. If NEXT-P
1010 is negative (interactively, with prefix arg that is a negative number or
1011 just \\[negative-argument]), pop back to the previous tag gone to.
1013 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
1015 A marker representing the point when this command is invoked is pushed
1016 onto a ring and may be popped back to with \\[pop-tag-mark].
1017 Contrast this with the ring of marks gone to by the command.
1019 See documentation of variable `tags-file-name'."
1020 (interactive (find-tag-interactive "Find tag other frame: "))
1021 (let ((pop-up-frames t))
1022 (find-tag-other-window tagname next-p)))
1023 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame)
1025 ;;;###autoload
1026 (defun find-tag-regexp (regexp &optional next-p other-window)
1027 "Find tag (in current tags table) whose name matches REGEXP.
1028 Select the buffer containing the tag's definition and move point there.
1030 If second arg NEXT-P is t (interactively, with prefix arg), search for
1031 another tag that matches the last tagname or regexp used. When there are
1032 multiple matches for a tag, more exact matches are found first. If NEXT-P
1033 is negative (interactively, with prefix arg that is a negative number or
1034 just \\[negative-argument]), pop back to the previous tag gone to.
1036 If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
1038 A marker representing the point when this command is invoked is pushed
1039 onto a ring and may be popped back to with \\[pop-tag-mark].
1040 Contrast this with the ring of marks gone to by the command.
1042 See documentation of variable `tags-file-name'."
1043 (interactive (find-tag-interactive "Find tag regexp: " t))
1044 ;; We go through find-tag-other-window to do all the display hair there.
1045 (funcall (if other-window 'find-tag-other-window 'find-tag)
1046 regexp next-p t))
1047 ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp)
1049 ;;;###autoload (define-key esc-map "*" 'pop-tag-mark)
1051 ;;;###autoload
1052 (defun pop-tag-mark ()
1053 "Pop back to where \\[find-tag] was last invoked.
1055 This is distinct from invoking \\[find-tag] with a negative argument
1056 since that pops a stack of markers at which tags were found, not from
1057 where they were found."
1058 (interactive)
1059 (if (ring-empty-p find-tag-marker-ring)
1060 (error "No previous locations for find-tag invocation"))
1061 (let ((marker (ring-remove find-tag-marker-ring 0)))
1062 (switch-to-buffer (or (marker-buffer marker)
1063 (error "The marked buffer has been deleted")))
1064 (goto-char (marker-position marker))
1065 (set-marker marker nil nil)))
1067 (defvar tag-lines-already-matched nil
1068 "Matches remembered between calls.") ; Doc string: calls to what?
1070 (defun find-tag-in-order (pattern
1071 search-forward-func
1072 order
1073 next-line-after-failure-p
1074 matching
1075 first-search)
1076 "Internal tag-finding function.
1077 PATTERN is a string to pass to arg SEARCH-FORWARD-FUNC, and to any
1078 member of the function list ORDER. If ORDER is nil, use saved state
1079 to continue a previous search.
1081 Arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match,
1082 point should be moved to the next line.
1084 Arg MATCHING is a string, an English `-ing' word, to be used in an
1085 error message."
1086 ;; Algorithm is as follows:
1087 ;; For each qualifier-func in ORDER, go to beginning of tags file, and
1088 ;; perform inner loop: for each naive match for PATTERN found using
1089 ;; SEARCH-FORWARD-FUNC, qualify the naive match using qualifier-func. If
1090 ;; it qualifies, go to the specified line in the specified source file
1091 ;; and return. Qualified matches are remembered to avoid repetition.
1092 ;; State is saved so that the loop can be continued.
1093 (let (file ;name of file containing tag
1094 tag-info ;where to find the tag in FILE
1095 (first-table t)
1096 (tag-order order)
1097 (match-marker (make-marker))
1098 goto-func
1099 (case-fold-search (if (memq tags-case-fold-search '(nil t))
1100 tags-case-fold-search
1101 case-fold-search))
1103 (save-excursion
1105 (if first-search
1106 ;; This is the start of a search for a fresh tag.
1107 ;; Clear the list of tags matched by the previous search.
1108 ;; find-tag-noselect has already put us in the first tags table
1109 ;; buffer before we got called.
1110 (setq tag-lines-already-matched nil)
1111 ;; Continuing to search for the tag specified last time.
1112 ;; tag-lines-already-matched lists locations matched in previous
1113 ;; calls so we don't visit the same tag twice if it matches twice
1114 ;; during two passes with different qualification predicates.
1115 ;; Switch to the current tags table buffer.
1116 (visit-tags-table-buffer 'same))
1118 ;; Get a qualified match.
1119 (catch 'qualified-match-found
1121 ;; Iterate over the list of tags tables.
1122 (while (or first-table
1123 (visit-tags-table-buffer t))
1125 (and first-search first-table
1126 ;; Start at beginning of tags file.
1127 (goto-char (point-min)))
1129 (setq first-table nil)
1131 ;; Iterate over the list of ordering predicates.
1132 (while order
1133 (while (funcall search-forward-func pattern nil t)
1134 ;; Naive match found. Qualify the match.
1135 (and (funcall (car order) pattern)
1136 ;; Make sure it is not a previous qualified match.
1137 (not (member (set-marker match-marker (point-at-bol))
1138 tag-lines-already-matched))
1139 (throw 'qualified-match-found nil))
1140 (if next-line-after-failure-p
1141 (forward-line 1)))
1142 ;; Try the next flavor of match.
1143 (setq order (cdr order))
1144 (goto-char (point-min)))
1145 (setq order tag-order))
1146 ;; We throw out on match, so only get here if there were no matches.
1147 ;; Clear out the markers we use to avoid duplicate matches so they
1148 ;; don't slow down editing and are immediately available for GC.
1149 (while tag-lines-already-matched
1150 (set-marker (car tag-lines-already-matched) nil nil)
1151 (setq tag-lines-already-matched (cdr tag-lines-already-matched)))
1152 (set-marker match-marker nil nil)
1153 (user-error "No %stags %s %s" (if first-search "" "more ")
1154 matching pattern))
1156 ;; Found a tag; extract location info.
1157 (beginning-of-line)
1158 (setq tag-lines-already-matched (cons match-marker
1159 tag-lines-already-matched))
1160 ;; Expand the filename, using the tags table buffer's default-directory.
1161 ;; We should be able to search for file-name backwards in file-of-tag:
1162 ;; the beginning-of-line is ok except when positioned on a "file-name" tag.
1163 (setq file (expand-file-name
1164 (if (memq (car order) '(tag-exact-file-name-match-p
1165 tag-file-name-match-p
1166 tag-partial-file-name-match-p))
1167 (save-excursion (forward-line 1)
1168 (file-of-tag))
1169 (file-of-tag)))
1170 tag-info (funcall snarf-tag-function))
1172 ;; Get the local value in the tags table buffer before switching buffers.
1173 (setq goto-func goto-tag-location-function)
1174 (tag-find-file-of-tag-noselect file)
1175 (widen)
1176 (push-mark)
1177 (funcall goto-func tag-info)
1179 ;; Return the buffer where the tag was found.
1180 (current-buffer))))
1182 (defun tag-find-file-of-tag-noselect (file)
1183 "Find the right line in the specified FILE."
1184 ;; If interested in compressed-files, search files with extensions.
1185 ;; Otherwise, search only the real file.
1186 (let* ((buffer-search-extensions (if auto-compression-mode
1187 tags-compression-info-list
1188 '("")))
1189 the-buffer
1190 (file-search-extensions buffer-search-extensions))
1191 ;; search a buffer visiting the file with each possible extension
1192 ;; Note: there is a small inefficiency in find-buffer-visiting :
1193 ;; truename is computed even if not needed. Not too sure about this
1194 ;; but I suspect truename computation accesses the disk.
1195 ;; It is maybe a good idea to optimize this find-buffer-visiting.
1196 ;; An alternative would be to use only get-file-buffer
1197 ;; but this looks less "sure" to find the buffer for the file.
1198 (while (and (not the-buffer) buffer-search-extensions)
1199 (setq the-buffer (find-buffer-visiting (concat file (car buffer-search-extensions))))
1200 (setq buffer-search-extensions (cdr buffer-search-extensions)))
1201 ;; if found a buffer but file modified, ensure we re-read !
1202 (if (and the-buffer (not (verify-visited-file-modtime the-buffer)))
1203 (find-file-noselect (buffer-file-name the-buffer)))
1204 ;; if no buffer found, search for files with possible extensions on disk
1205 (while (and (not the-buffer) file-search-extensions)
1206 (if (not (file-exists-p (concat file (car file-search-extensions))))
1207 (setq file-search-extensions (cdr file-search-extensions))
1208 (setq the-buffer (find-file-noselect (concat file (car file-search-extensions))))))
1209 (if (not the-buffer)
1210 (if auto-compression-mode
1211 (error "File %s (with or without extensions %s) not found" file tags-compression-info-list)
1212 (error "File %s not found" file))
1213 (set-buffer the-buffer))))
1215 (defun tag-find-file-of-tag (file) ; Doc string?
1216 (let ((buf (tag-find-file-of-tag-noselect file)))
1217 (condition-case nil
1218 (switch-to-buffer buf)
1219 (error (pop-to-buffer buf)))))
1221 ;; `etags' TAGS file format support.
1223 (defun etags-recognize-tags-table ()
1224 "If `etags-verify-tags-table', make buffer-local format variables.
1225 If current buffer is a valid etags TAGS file, then give it
1226 buffer-local values of tags table format variables."
1227 (and (etags-verify-tags-table)
1228 ;; It is annoying to flash messages on the screen briefly,
1229 ;; and this message is not useful. -- rms
1230 ;; (message "%s is an `etags' TAGS file" buffer-file-name)
1231 (mapc (lambda (elt) (set (make-local-variable (car elt)) (cdr elt)))
1232 '((file-of-tag-function . etags-file-of-tag)
1233 (tags-table-files-function . etags-tags-table-files)
1234 (tags-completion-table-function . etags-tags-completion-table)
1235 (snarf-tag-function . etags-snarf-tag)
1236 (goto-tag-location-function . etags-goto-tag-location)
1237 (find-tag-regexp-search-function . re-search-forward)
1238 (find-tag-regexp-tag-order . (tag-re-match-p))
1239 (find-tag-regexp-next-line-after-failure-p . t)
1240 (find-tag-search-function . search-forward)
1241 (find-tag-tag-order . (tag-exact-file-name-match-p
1242 tag-file-name-match-p
1243 tag-exact-match-p
1244 tag-implicit-name-match-p
1245 tag-symbol-match-p
1246 tag-word-match-p
1247 tag-partial-file-name-match-p
1248 tag-any-match-p))
1249 (find-tag-next-line-after-failure-p . nil)
1250 (list-tags-function . etags-list-tags)
1251 (tags-apropos-function . etags-tags-apropos)
1252 (tags-included-tables-function . etags-tags-included-tables)
1253 (verify-tags-table-function . etags-verify-tags-table)
1254 ))))
1256 (defun etags-verify-tags-table ()
1257 "Return non-nil if the current buffer is a valid etags TAGS file."
1258 ;; Use eq instead of = in case char-after returns nil.
1259 (eq (char-after (point-min)) ?\f))
1261 (defun etags-file-of-tag (&optional relative) ; Doc string?
1262 (save-excursion
1263 (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n")
1264 (let ((str (convert-standard-filename
1265 (buffer-substring (match-beginning 1) (match-end 1)))))
1266 (if relative
1268 (expand-file-name str (file-truename default-directory))))))
1271 (defun etags-tags-completion-table () ; Doc string?
1272 (let ((table (make-vector 511 0))
1273 (progress-reporter
1274 (make-progress-reporter
1275 (format "Making tags completion table for %s..." buffer-file-name)
1276 (point-min) (point-max))))
1277 (save-excursion
1278 (goto-char (point-min))
1279 ;; This monster regexp matches an etags tag line.
1280 ;; \1 is the string to match;
1281 ;; \2 is not interesting;
1282 ;; \3 is the guessed tag name; XXX guess should be better eg DEFUN
1283 ;; \4 is not interesting;
1284 ;; \5 is the explicitly-specified tag name.
1285 ;; \6 is the line to start searching at;
1286 ;; \7 is the char to start searching at.
1287 (while (re-search-forward
1288 "^\\(\\([^\177]+[^-a-zA-Z0-9_+*$:\177]+\\)?\
1289 \\([-a-zA-Z0-9_+*$?:]+\\)[^-a-zA-Z0-9_+*$?:\177]*\\)\177\
1290 \\(\\([^\n\001]+\\)\001\\)?\\([0-9]+\\)?,\\([0-9]+\\)?\n"
1291 nil t)
1292 (intern (prog1 (if (match-beginning 5)
1293 ;; There is an explicit tag name.
1294 (buffer-substring (match-beginning 5) (match-end 5))
1295 ;; No explicit tag name. Best guess.
1296 (buffer-substring (match-beginning 3) (match-end 3)))
1297 (progress-reporter-update progress-reporter (point)))
1298 table)))
1299 table))
1301 (defun etags-snarf-tag (&optional use-explicit) ; Doc string?
1302 (let (tag-text line startpos explicit-start)
1303 (if (save-excursion
1304 (forward-line -1)
1305 (looking-at "\f\n"))
1306 ;; The match was for a source file name, not any tag within a file.
1307 ;; Give text of t, meaning to go exactly to the location we specify,
1308 ;; the beginning of the file.
1309 (setq tag-text t
1310 line nil
1311 startpos (point-min))
1313 ;; Find the end of the tag and record the whole tag text.
1314 (search-forward "\177")
1315 (setq tag-text (buffer-substring (1- (point)) (point-at-bol)))
1316 ;; If use-explicit is non nil and explicit tag is present, use it as part of
1317 ;; return value. Else just skip it.
1318 (setq explicit-start (point))
1319 (when (and (search-forward "\001" (point-at-bol 2) t)
1320 use-explicit)
1321 (setq tag-text (buffer-substring explicit-start (1- (point)))))
1324 (if (looking-at "[0-9]")
1325 (setq line (string-to-number (buffer-substring
1326 (point)
1327 (progn (skip-chars-forward "0-9")
1328 (point))))))
1329 (search-forward ",")
1330 (if (looking-at "[0-9]")
1331 (setq startpos (string-to-number (buffer-substring
1332 (point)
1333 (progn (skip-chars-forward "0-9")
1334 (point)))))))
1335 ;; Leave point on the next line of the tags file.
1336 (forward-line 1)
1337 (cons tag-text (cons line startpos))))
1339 (defun etags-goto-tag-location (tag-info)
1340 "Go to location of tag specified by TAG-INFO.
1341 TAG-INFO is a cons (TEXT LINE . POSITION).
1342 TEXT is the initial part of a line containing the tag.
1343 LINE is the line number.
1344 POSITION is the (one-based) char position of TEXT within the file.
1346 If TEXT is t, it means the tag refers to exactly LINE or POSITION,
1347 whichever is present, LINE having preference, no searching.
1348 Either LINE or POSITION can be nil. POSITION is used if present.
1350 If the tag isn't exactly at the given position, then look near that
1351 position using a search window that expands progressively until it
1352 hits the start of file."
1353 (let ((startpos (cdr (cdr tag-info)))
1354 (line (car (cdr tag-info)))
1355 offset found pat)
1356 (if (eq (car tag-info) t)
1357 ;; Direct file tag.
1358 (cond (line (progn (goto-char (point-min))
1359 (forward-line (1- line))))
1360 (startpos (goto-char startpos))
1361 (t (error "etags.el BUG: bogus direct file tag")))
1362 ;; This constant is 1/2 the initial search window.
1363 ;; There is no sense in making it too small,
1364 ;; since just going around the loop once probably
1365 ;; costs about as much as searching 2000 chars.
1366 (setq offset 1000
1367 found nil
1368 pat (concat (if (eq selective-display t)
1369 "\\(^\\|\^m\\)" "^")
1370 (regexp-quote (car tag-info))))
1371 ;; The character position in the tags table is 0-origin.
1372 ;; Convert it to a 1-origin Emacs character position.
1373 (if startpos (setq startpos (1+ startpos)))
1374 ;; If no char pos was given, try the given line number.
1375 (or startpos
1376 (if line
1377 (setq startpos (progn (goto-char (point-min))
1378 (forward-line (1- line))
1379 (point)))))
1380 (or startpos
1381 (setq startpos (point-min)))
1382 ;; First see if the tag is right at the specified location.
1383 (goto-char startpos)
1384 (setq found (looking-at pat))
1385 (while (and (not found)
1386 (progn
1387 (goto-char (- startpos offset))
1388 (not (bobp))))
1389 (setq found
1390 (re-search-forward pat (+ startpos offset) t)
1391 offset (* 3 offset))) ; expand search window
1392 (or found
1393 (re-search-forward pat nil t)
1394 (user-error "Rerun etags: `%s' not found in %s"
1395 pat buffer-file-name)))
1396 ;; Position point at the right place
1397 ;; if the search string matched an extra Ctrl-m at the beginning.
1398 (and (eq selective-display t)
1399 (looking-at "\^m")
1400 (forward-char 1))
1401 (beginning-of-line)))
1403 (defun etags-list-tags (file) ; Doc string?
1404 (goto-char (point-min))
1405 (when (re-search-forward (concat "\f\n" "\\(" file "\\)" ",") nil t)
1406 (let ((path (save-excursion (forward-line 1) (file-of-tag)))
1407 ;; Get the local value in the tags table
1408 ;; buffer before switching buffers.
1409 (goto-func goto-tag-location-function)
1410 tag tag-info pt)
1411 (forward-line 1)
1412 (while (not (or (eobp) (looking-at "\f")))
1413 ;; We used to use explicit tags when available, but the current goto-func
1414 ;; can only handle implicit tags.
1415 (setq tag-info (save-excursion (funcall snarf-tag-function nil))
1416 tag (car tag-info)
1417 pt (with-current-buffer standard-output (point)))
1418 (princ tag)
1419 (when (= (aref tag 0) ?\() (princ " ...)"))
1420 (with-current-buffer standard-output
1421 (make-text-button pt (point)
1422 'tag-info tag-info
1423 'file-path path
1424 'goto-func goto-func
1425 'action (lambda (button)
1426 (let ((tag-info (button-get button 'tag-info))
1427 (goto-func (button-get button 'goto-func)))
1428 (tag-find-file-of-tag (button-get button 'file-path))
1429 (widen)
1430 (funcall goto-func tag-info)))
1431 'follow-link t
1432 'face tags-tag-face
1433 'type 'button))
1434 (terpri)
1435 (forward-line 1))
1436 t)))
1438 (defmacro tags-with-face (face &rest body)
1439 "Execute BODY, give output to `standard-output' face FACE."
1440 (let ((pp (make-symbol "start")))
1441 `(let ((,pp (with-current-buffer standard-output (point))))
1442 ,@body
1443 (put-text-property ,pp (with-current-buffer standard-output (point))
1444 'face ,face standard-output))))
1446 (defun etags-tags-apropos-additional (regexp)
1447 "Display tags matching REGEXP from `tags-apropos-additional-actions'."
1448 (with-current-buffer standard-output
1449 (dolist (oba tags-apropos-additional-actions)
1450 (princ "\n\n")
1451 (tags-with-face 'highlight (princ (car oba)))
1452 (princ":\n\n")
1453 (let* ((beg (point))
1454 (symbs (car (cddr oba)))
1455 (ins-symb (lambda (sy)
1456 (let ((sn (symbol-name sy)))
1457 (when (string-match regexp sn)
1458 (make-text-button (point)
1459 (progn (princ sy) (point))
1460 'action-internal(cadr oba)
1461 'action (lambda (button) (funcall
1462 (button-get button 'action-internal)
1463 (button-get button 'item)))
1464 'item sn
1465 'face tags-tag-face
1466 'follow-link t
1467 'type 'button)
1468 (terpri))))))
1469 (when (symbolp symbs)
1470 (if (boundp symbs)
1471 (setq symbs (symbol-value symbs))
1472 (insert "symbol `" (symbol-name symbs) "' has no value\n")
1473 (setq symbs nil)))
1474 (if (vectorp symbs)
1475 (mapatoms ins-symb symbs)
1476 (dolist (sy symbs)
1477 (funcall ins-symb (car sy))))
1478 (sort-lines nil beg (point))))))
1480 (defun etags-tags-apropos (string) ; Doc string?
1481 (when tags-apropos-verbose
1482 (princ "Tags in file `")
1483 (tags-with-face 'highlight (princ buffer-file-name))
1484 (princ "':\n\n"))
1485 (goto-char (point-min))
1486 (let ((progress-reporter (make-progress-reporter
1487 (format "Making tags apropos buffer for `%s'..."
1488 string)
1489 (point-min) (point-max))))
1490 (while (re-search-forward string nil t)
1491 (progress-reporter-update progress-reporter (point))
1492 (beginning-of-line)
1494 (let* ( ;; Get the local value in the tags table
1495 ;; buffer before switching buffers.
1496 (goto-func goto-tag-location-function)
1497 (tag-info (save-excursion (funcall snarf-tag-function)))
1498 (tag (if (eq t (car tag-info)) nil (car tag-info)))
1499 (file-path (save-excursion (if tag (file-of-tag)
1500 (save-excursion (forward-line 1)
1501 (file-of-tag)))))
1502 (file-label (if tag (file-of-tag t)
1503 (save-excursion (forward-line 1)
1504 (file-of-tag t))))
1505 (pt (with-current-buffer standard-output (point))))
1506 (if tag
1507 (progn
1508 (princ (format "[%s]: " file-label))
1509 (princ tag)
1510 (when (= (aref tag 0) ?\() (princ " ...)"))
1511 (with-current-buffer standard-output
1512 (make-text-button pt (point)
1513 'tag-info tag-info
1514 'file-path file-path
1515 'goto-func goto-func
1516 'action (lambda (button)
1517 (let ((tag-info (button-get button 'tag-info))
1518 (goto-func (button-get button 'goto-func)))
1519 (tag-find-file-of-tag (button-get button 'file-path))
1520 (widen)
1521 (funcall goto-func tag-info)))
1522 'follow-link t
1523 'face tags-tag-face
1524 'type 'button)))
1525 (princ (format "- %s" file-label))
1526 (with-current-buffer standard-output
1527 (make-text-button pt (point)
1528 'file-path file-path
1529 'action (lambda (button)
1530 (tag-find-file-of-tag (button-get button 'file-path))
1531 ;; Get the local value in the tags table
1532 ;; buffer before switching buffers.
1533 (goto-char (point-min)))
1534 'follow-link t
1535 'face tags-tag-face
1536 'type 'button))))
1537 (terpri)
1538 (forward-line 1))
1539 (message nil))
1540 (when tags-apropos-verbose (princ "\n")))
1542 (defun etags-tags-table-files () ; Doc string?
1543 (let ((files nil)
1544 beg)
1545 (goto-char (point-min))
1546 (while (search-forward "\f\n" nil t)
1547 (setq beg (point))
1548 (end-of-line)
1549 (skip-chars-backward "^," beg)
1550 (or (looking-at "include$")
1551 (push (convert-standard-filename
1552 (buffer-substring beg (1- (point))))
1553 files)))
1554 (nreverse files)))
1556 ;; FIXME? Should this save-excursion?
1557 (defun etags-tags-included-tables () ; Doc string?
1558 (let ((files nil)
1559 beg)
1560 (goto-char (point-min))
1561 (while (search-forward "\f\n" nil t)
1562 (setq beg (point))
1563 (end-of-line)
1564 (skip-chars-backward "^," beg)
1565 (when (looking-at "include$")
1566 ;; Expand in the default-directory of the tags table buffer.
1567 (push (expand-file-name (convert-standard-filename
1568 (buffer-substring beg (1- (point)))))
1569 files)))
1570 (nreverse files)))
1572 ;; Empty tags file support.
1574 (defun tags-recognize-empty-tags-table ()
1575 "Return non-nil if current buffer is empty.
1576 If empty, make buffer-local values of the tags table format variables
1577 that do nothing."
1578 (and (zerop (buffer-size))
1579 (mapc (lambda (sym) (set (make-local-variable sym) 'ignore))
1580 '(tags-table-files-function
1581 tags-completion-table-function
1582 find-tag-regexp-search-function
1583 find-tag-search-function
1584 tags-apropos-function
1585 tags-included-tables-function))
1586 (set (make-local-variable 'verify-tags-table-function)
1587 (lambda () (zerop (buffer-size))))))
1589 ;; Match qualifier functions for tagnames.
1590 ;; These functions assume the etags file format defined in etc/ETAGS.EBNF.
1592 ;; This might be a neat idea, but it's too hairy at the moment.
1593 ;;(defmacro tags-with-syntax (&rest body)
1594 ;; `(with-syntax-table
1595 ;; (with-current-buffer (find-file-noselect (file-of-tag))
1596 ;; (syntax-table))
1597 ;; ,@body))
1598 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form))
1600 ;; exact file name match, i.e. searched tag must match complete file
1601 ;; name including directories parts if there are some.
1602 (defun tag-exact-file-name-match-p (tag)
1603 "Return non-nil if TAG matches complete file name.
1604 Any directory part of the file name is also matched."
1605 (and (looking-at ",[0-9\n]")
1606 (save-excursion (backward-char (+ 2 (length tag)))
1607 (looking-at "\f\n"))))
1609 ;; file name match as above, but searched tag must match the file
1610 ;; name not including the directories if there are some.
1611 (defun tag-file-name-match-p (tag)
1612 "Return non-nil if TAG matches file name, excluding directory part."
1613 (and (looking-at ",[0-9\n]")
1614 (save-excursion (backward-char (1+ (length tag)))
1615 (looking-at "/"))))
1617 ;; this / to detect we are after a directory separator is ok for unix,
1618 ;; is there a variable that contains the regexp for directory separator
1619 ;; on whatever operating system ?
1620 ;; Looks like ms-win will lose here :).
1622 ;; t if point is at a tag line that matches TAG exactly.
1623 ;; point should be just after a string that matches TAG.
1624 (defun tag-exact-match-p (tag)
1625 "Return non-nil if current tag line matches TAG exactly.
1626 Point should be just after a string that matches TAG."
1627 ;; The match is really exact if there is an explicit tag name.
1628 (or (and (eq (char-after (point)) ?\001)
1629 (eq (char-after (- (point) (length tag) 1)) ?\177))
1630 ;; We are not on the explicit tag name, but perhaps it follows.
1631 (looking-at (concat "[^\177\n]*\177" (regexp-quote tag) "\001"))))
1633 ;; t if point is at a tag line that has an implicit name.
1634 ;; point should be just after a string that matches TAG.
1635 (defun tag-implicit-name-match-p (tag)
1636 "Return non-nil if current tag line has an implicit name.
1637 Point should be just after a string that matches TAG."
1638 ;; Look at the comment of the make_tag function in lib-src/etags.c for
1639 ;; a textual description of the four rules.
1640 (and (string-match "^[^ \t()=,;]+$" tag) ;rule #1
1641 (looking-at "[ \t()=,;]?\177") ;rules #2 and #4
1642 (save-excursion
1643 (backward-char (1+ (length tag)))
1644 (looking-at "[\n \t()=,;]")))) ;rule #3
1646 ;; t if point is at a tag line that matches TAG as a symbol.
1647 ;; point should be just after a string that matches TAG.
1648 (defun tag-symbol-match-p (tag)
1649 "Return non-nil if current tag line matches TAG as a symbol.
1650 Point should be just after a string that matches TAG."
1651 (and (looking-at "\\Sw.*\177") (looking-at "\\S_.*\177")
1652 (save-excursion
1653 (backward-char (1+ (length tag)))
1654 (and (looking-at "\\Sw") (looking-at "\\S_")))))
1656 ;; t if point is at a tag line that matches TAG as a word.
1657 ;; point should be just after a string that matches TAG.
1658 (defun tag-word-match-p (tag)
1659 "Return non-nil if current tag line matches TAG as a word.
1660 Point should be just after a string that matches TAG."
1661 (and (looking-at "\\b.*\177")
1662 (save-excursion (backward-char (length tag))
1663 (looking-at "\\b"))))
1665 ;; partial file name match, i.e. searched tag must match a substring
1666 ;; of the file name (potentially including a directory separator).
1667 (defun tag-partial-file-name-match-p (_tag)
1668 "Return non-nil if current tag matches file name.
1669 This is a substring match, and it can include directory separators.
1670 Point should be just after a string that matches TAG."
1671 (and (looking-at ".*,[0-9\n]")
1672 (save-excursion (beginning-of-line)
1673 (backward-char 2)
1674 (looking-at "\f\n"))))
1676 ;; t if point is in a tag line with a tag containing TAG as a substring.
1677 (defun tag-any-match-p (_tag)
1678 "Return non-nil if current tag line contains TAG as a substring."
1679 (looking-at ".*\177"))
1681 ;; t if point is at a tag line that matches RE as a regexp.
1682 (defun tag-re-match-p (re)
1683 "Return non-nil if current tag line matches regexp RE."
1684 (save-excursion
1685 (beginning-of-line)
1686 (let ((bol (point)))
1687 (and (search-forward "\177" (line-end-position) t)
1688 (re-search-backward re bol t)))))
1690 (defcustom tags-loop-revert-buffers nil
1691 "Non-nil means tags-scanning loops should offer to reread changed files.
1692 These loops normally read each file into Emacs, but when a file
1693 is already visited, they use the existing buffer.
1694 When this flag is non-nil, they offer to revert the existing buffer
1695 in the case where the file has changed since you visited it."
1696 :type 'boolean
1697 :group 'etags)
1699 ;;;###autoload
1700 (defun next-file (&optional initialize novisit)
1701 "Select next file among files in current tags table.
1703 A first argument of t (prefix arg, if interactive) initializes to the
1704 beginning of the list of files in the tags table. If the argument is
1705 neither nil nor t, it is evalled to initialize the list of files.
1707 Non-nil second argument NOVISIT means use a temporary buffer
1708 to save time and avoid uninteresting warnings.
1710 Value is nil if the file was already visited;
1711 if the file was newly read in, the value is the filename."
1712 ;; Make the interactive arg t if there was any prefix arg.
1713 (interactive (list (if current-prefix-arg t)))
1714 (cond ((not initialize)
1715 ;; Not the first run.
1717 ((eq initialize t)
1718 ;; Initialize the list from the tags table.
1719 (save-excursion
1720 ;; Visit the tags table buffer to get its list of files.
1721 (visit-tags-table-buffer)
1722 ;; Copy the list so we can setcdr below, and expand the file
1723 ;; names while we are at it, in this buffer's default directory.
1724 (setq next-file-list (mapcar 'expand-file-name (tags-table-files)))
1725 ;; Iterate over all the tags table files, collecting
1726 ;; a complete list of referenced file names.
1727 (while (visit-tags-table-buffer t)
1728 ;; Find the tail of the working list and chain on the new
1729 ;; sublist for this tags table.
1730 (let ((tail next-file-list))
1731 (while (cdr tail)
1732 (setq tail (cdr tail)))
1733 ;; Use a copy so the next loop iteration will not modify the
1734 ;; list later returned by (tags-table-files).
1735 (if tail
1736 (setcdr tail (mapcar 'expand-file-name (tags-table-files)))
1737 (setq next-file-list (mapcar 'expand-file-name
1738 (tags-table-files))))))))
1740 ;; Initialize the list by evalling the argument.
1741 (setq next-file-list (eval initialize))))
1742 (unless next-file-list
1743 (and novisit
1744 (get-buffer " *next-file*")
1745 (kill-buffer " *next-file*"))
1746 (user-error "All files processed"))
1747 (let* ((next (car next-file-list))
1748 (buffer (get-file-buffer next))
1749 (new (not buffer)))
1750 ;; Advance the list before trying to find the file.
1751 ;; If we get an error finding the file, don't get stuck on it.
1752 (setq next-file-list (cdr next-file-list))
1753 ;; Optionally offer to revert buffers
1754 ;; if the files have changed on disk.
1755 (and buffer tags-loop-revert-buffers
1756 (not (verify-visited-file-modtime buffer))
1757 (y-or-n-p
1758 (format
1759 (if (buffer-modified-p buffer)
1760 "File %s changed on disk. Discard your edits? "
1761 "File %s changed on disk. Reread from disk? ")
1762 next))
1763 (with-current-buffer buffer
1764 (revert-buffer t t)))
1765 (if (not (and new novisit))
1766 (find-file next novisit)
1767 ;; Like find-file, but avoids random warning messages.
1768 (switch-to-buffer (get-buffer-create " *next-file*"))
1769 (kill-all-local-variables)
1770 (erase-buffer)
1771 (setq new next)
1772 (insert-file-contents new nil))
1773 new))
1775 (defvar tags-loop-operate nil
1776 "Form for `tags-loop-continue' to eval to change one file.")
1778 (defvar tags-loop-scan
1779 '(user-error "%s"
1780 (substitute-command-keys
1781 "No \\[tags-search] or \\[tags-query-replace] in progress"))
1782 "Form for `tags-loop-continue' to eval to scan one file.
1783 If it returns non-nil, this file needs processing by evalling
1784 \`tags-loop-operate'. Otherwise, move on to the next file.")
1786 (defun tags-loop-eval (form)
1787 "Evaluate FORM and return its result.
1788 Bind `case-fold-search' during the evaluation, depending on the value of
1789 `tags-case-fold-search'."
1790 (let ((case-fold-search (if (memq tags-case-fold-search '(t nil))
1791 tags-case-fold-search
1792 case-fold-search)))
1793 (eval form)))
1796 ;;;###autoload
1797 (defun tags-loop-continue (&optional first-time)
1798 "Continue last \\[tags-search] or \\[tags-query-replace] command.
1799 Used noninteractively with non-nil argument to begin such a command (the
1800 argument is passed to `next-file', which see).
1802 Two variables control the processing we do on each file: the value of
1803 `tags-loop-scan' is a form to be executed on each file to see if it is
1804 interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
1805 evaluate to operate on an interesting file. If the latter evaluates to
1806 nil, we exit; otherwise we scan the next file."
1807 (interactive)
1808 (let (new
1809 ;; Non-nil means we have finished one file
1810 ;; and should not scan it again.
1811 file-finished
1812 original-point
1813 (messaged nil))
1814 (while
1815 (progn
1816 ;; Scan files quickly for the first or next interesting one.
1817 ;; This starts at point in the current buffer.
1818 (while (or first-time file-finished
1819 (save-restriction
1820 (widen)
1821 (not (tags-loop-eval tags-loop-scan))))
1822 ;; If nothing was found in the previous file, and
1823 ;; that file isn't in a temp buffer, restore point to
1824 ;; where it was.
1825 (when original-point
1826 (goto-char original-point))
1828 (setq file-finished nil)
1829 (setq new (next-file first-time t))
1831 ;; If NEW is non-nil, we got a temp buffer,
1832 ;; and NEW is the file name.
1833 (when (or messaged
1834 (and (not first-time)
1835 (> baud-rate search-slow-speed)
1836 (setq messaged t)))
1837 (message "Scanning file %s..." (or new buffer-file-name)))
1839 (setq first-time nil)
1840 (setq original-point (if new nil (point)))
1841 (goto-char (point-min)))
1843 ;; If we visited it in a temp buffer, visit it now for real.
1844 (if new
1845 (let ((pos (point)))
1846 (erase-buffer)
1847 (set-buffer (find-file-noselect new))
1848 (setq new nil) ;No longer in a temp buffer.
1849 (widen)
1850 (goto-char pos))
1851 (push-mark original-point t))
1853 (switch-to-buffer (current-buffer))
1855 ;; Now operate on the file.
1856 ;; If value is non-nil, continue to scan the next file.
1857 (tags-loop-eval tags-loop-operate))
1858 (setq file-finished t))
1859 (and messaged
1860 (null tags-loop-operate)
1861 (message "Scanning file %s...found" buffer-file-name))))
1862 ;;;###autoload (define-key esc-map "," 'tags-loop-continue)
1864 ;;;###autoload
1865 (defun tags-search (regexp &optional file-list-form)
1866 "Search through all files listed in tags table for match for REGEXP.
1867 Stops when a match is found.
1868 To continue searching for next match, use command \\[tags-loop-continue].
1870 If FILE-LIST-FORM is non-nil, it should be a form that, when
1871 evaluated, will return a list of file names. The search will be
1872 restricted to these files.
1874 Also see the documentation of the `tags-file-name' variable."
1875 (interactive "sTags search (regexp): ")
1876 (if (and (equal regexp "")
1877 (eq (car tags-loop-scan) 're-search-forward)
1878 (null tags-loop-operate))
1879 ;; Continue last tags-search as if by M-,.
1880 (tags-loop-continue nil)
1881 (setq tags-loop-scan `(re-search-forward ',regexp nil t)
1882 tags-loop-operate nil)
1883 (tags-loop-continue (or file-list-form t))))
1885 ;;;###autoload
1886 (defun tags-query-replace (from to &optional delimited file-list-form)
1887 "Do `query-replace-regexp' of FROM with TO on all files listed in tags table.
1888 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
1889 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
1890 with the command \\[tags-loop-continue].
1891 Fourth arg FILE-LIST-FORM non-nil means initialize the replacement loop.
1892 Fifth and sixth arguments START and END are accepted, for compatibility
1893 with `query-replace-regexp', and ignored.
1895 If FILE-LIST-FORM is non-nil, it is a form to evaluate to
1896 produce the list of files to search.
1898 See also the documentation of the variable `tags-file-name'."
1899 (interactive (query-replace-read-args "Tags query replace (regexp)" t t))
1900 (setq tags-loop-scan `(let ,(unless (equal from (downcase from))
1901 '((case-fold-search nil)))
1902 (if (re-search-forward ',from nil t)
1903 ;; When we find a match, move back
1904 ;; to the beginning of it so perform-replace
1905 ;; will see it.
1906 (goto-char (match-beginning 0))))
1907 tags-loop-operate `(perform-replace ',from ',to t t ',delimited
1908 nil multi-query-replace-map))
1909 (tags-loop-continue (or file-list-form t)))
1911 (defun tags-complete-tags-table-file (string predicate what) ; Doc string?
1912 (save-excursion
1913 ;; If we need to ask for the tag table, allow that.
1914 (let ((enable-recursive-minibuffers t))
1915 (visit-tags-table-buffer))
1916 (if (eq what t)
1917 (all-completions string (tags-table-files) predicate)
1918 (try-completion string (tags-table-files) predicate))))
1920 ;;;###autoload
1921 (defun list-tags (file &optional _next-match)
1922 "Display list of tags in file FILE.
1923 This searches only the first table in the list, and no included tables.
1924 FILE should be as it appeared in the `etags' command, usually without a
1925 directory specification."
1926 (interactive (list (completing-read "List tags in file: "
1927 'tags-complete-tags-table-file
1928 nil t nil)))
1929 (with-output-to-temp-buffer "*Tags List*"
1930 (princ "Tags in file `")
1931 (tags-with-face 'highlight (princ file))
1932 (princ "':\n\n")
1933 (save-excursion
1934 (let ((first-time t)
1935 (gotany nil))
1936 (while (visit-tags-table-buffer (not first-time))
1937 (setq first-time nil)
1938 (if (funcall list-tags-function file)
1939 (setq gotany t)))
1940 (or gotany
1941 (user-error "File %s not in current tags tables" file)))))
1942 (with-current-buffer "*Tags List*"
1943 (require 'apropos)
1944 (with-no-warnings
1945 (apropos-mode))
1946 (setq buffer-read-only t)))
1948 ;;;###autoload
1949 (defun tags-apropos (regexp)
1950 "Display list of all tags in tags table REGEXP matches."
1951 (interactive "sTags apropos (regexp): ")
1952 (with-output-to-temp-buffer "*Tags List*"
1953 (princ "Click mouse-2 to follow tags.\n\nTags matching regexp `")
1954 (tags-with-face 'highlight (princ regexp))
1955 (princ "':\n\n")
1956 (save-excursion
1957 (let ((first-time t))
1958 (while (visit-tags-table-buffer (not first-time))
1959 (setq first-time nil)
1960 (funcall tags-apropos-function regexp))))
1961 (etags-tags-apropos-additional regexp))
1962 (with-current-buffer "*Tags List*"
1963 (eval-and-compile (require 'apropos))
1964 (apropos-mode)
1965 ;; apropos-mode is derived from fundamental-mode and it kills
1966 ;; all local variables.
1967 (setq buffer-read-only t)))
1969 ;; XXX Kludge interface.
1971 (define-button-type 'tags-select-tags-table
1972 'action 'select-tags-table-select
1973 'follow-link t
1974 'help-echo "RET, t or mouse-2: select tags table")
1976 ;; XXX If a file is in multiple tables, selection may get the wrong one.
1977 ;;;###autoload
1978 (defun select-tags-table ()
1979 "Select a tags table file from a menu of those you have already used.
1980 The list of tags tables to select from is stored in `tags-table-set-list';
1981 see the doc of that variable if you want to add names to the list."
1982 (interactive)
1983 (pop-to-buffer "*Tags Table List*")
1984 (setq buffer-read-only nil
1985 buffer-undo-list t)
1986 (erase-buffer)
1987 (let ((set-list tags-table-set-list)
1988 (desired-point nil)
1990 (when tags-table-list
1991 (setq desired-point (point-marker))
1992 (setq b (point))
1993 (princ (mapcar 'abbreviate-file-name tags-table-list) (current-buffer))
1994 (make-text-button b (point) 'type 'tags-select-tags-table
1995 'etags-table (car tags-table-list))
1996 (insert "\n"))
1997 (while set-list
1998 (unless (eq (car set-list) tags-table-list)
1999 (setq b (point))
2000 (princ (mapcar 'abbreviate-file-name (car set-list)) (current-buffer))
2001 (make-text-button b (point) 'type 'tags-select-tags-table
2002 'etags-table (car (car set-list)))
2003 (insert "\n"))
2004 (setq set-list (cdr set-list)))
2005 (when tags-file-name
2006 (or desired-point
2007 (setq desired-point (point-marker)))
2008 (setq b (point))
2009 (insert (abbreviate-file-name tags-file-name))
2010 (make-text-button b (point) 'type 'tags-select-tags-table
2011 'etags-table tags-file-name)
2012 (insert "\n"))
2013 (setq set-list (delete tags-file-name
2014 (apply 'nconc (cons (copy-sequence tags-table-list)
2015 (mapcar 'copy-sequence
2016 tags-table-set-list)))))
2017 (while set-list
2018 (setq b (point))
2019 (insert (abbreviate-file-name (car set-list)))
2020 (make-text-button b (point) 'type 'tags-select-tags-table
2021 'etags-table (car set-list))
2022 (insert "\n")
2023 (setq set-list (delete (car set-list) set-list)))
2024 (goto-char (point-min))
2025 (insert-before-markers
2026 "Type `t' to select a tags table or set of tags tables:\n\n")
2027 (if desired-point
2028 (goto-char desired-point))
2029 (set-window-start (selected-window) 1 t))
2030 (set-buffer-modified-p nil)
2031 (select-tags-table-mode))
2033 (defvar select-tags-table-mode-map ; Doc string?
2034 (let ((map (make-sparse-keymap)))
2035 (set-keymap-parent map button-buffer-map)
2036 (define-key map "t" 'push-button)
2037 (define-key map " " 'next-line)
2038 (define-key map "\^?" 'previous-line)
2039 (define-key map "n" 'next-line)
2040 (define-key map "p" 'previous-line)
2041 (define-key map "q" 'select-tags-table-quit)
2042 map))
2044 (define-derived-mode select-tags-table-mode special-mode "Select Tags Table"
2045 "Major mode for choosing a current tags table among those already loaded."
2046 (setq buffer-read-only t))
2048 (defun select-tags-table-select (button)
2049 "Select the tags table named on this line."
2050 (interactive (list (or (button-at (line-beginning-position))
2051 (error "No tags table on current line"))))
2052 (let ((name (button-get button 'etags-table)))
2053 (visit-tags-table name)
2054 (select-tags-table-quit)
2055 (message "Tags table now %s" name)))
2057 (defun select-tags-table-quit ()
2058 "Kill the buffer and delete the selected window."
2059 (interactive)
2060 (quit-window t (selected-window)))
2062 ;;;###autoload
2063 (defun complete-tag ()
2064 "Perform tags completion on the text around point.
2065 Completes to the set of names listed in the current tags table.
2066 The string to complete is chosen in the same way as the default
2067 for \\[find-tag] (which see)."
2068 (interactive)
2069 (or tags-table-list
2070 tags-file-name
2071 (user-error "%s"
2072 (substitute-command-keys
2073 "No tags table loaded; try \\[visit-tags-table]")))
2074 (let ((comp-data (tags-completion-at-point-function)))
2075 (if (null comp-data)
2076 (user-error "Nothing to complete")
2077 (completion-in-region (car comp-data) (cadr comp-data)
2078 (nth 2 comp-data)
2079 (plist-get (nthcdr 3 comp-data) :predicate)))))
2081 (provide 'etags)
2083 ;;; etags.el ends here