annotate lisp/progmodes/etags.el @ 824:b7ba8d69e136

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