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