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