Mercurial > emacs
annotate lisp/progmodes/etags.el @ 21873:3ab8be88f2ef
Generalized region skipping added.
Checks comments only in code.
Added backward compatible support for customize.
(ispell-query-replace-choices, ispell-message-dictionary-alist)
(ispell-grep-command, ispell-grep-options, ispell-look-command)
(ispell-look-options, ispell-use-ptys-p, ispell-local-dictionary)
(ispell-dictionary-alist): Now customizable.
Fixed type of custom variables: ispell-help-in-bufferp.
(ispell-use-framepop-p): New variable.
(ispell-dictionary-alist): Added dictionaries: castellano, castellano8
czech, esperanto, esperanto-tex, norsk, russian.
Capitalize XEmacs correctly, and change lucid to xemacs in code:
(ispell-menu-lucid): Renamed to ispell-menu-xemacs.
Changed string compares for version number to be correct for XEmacs.
Fixed to work with string properties.
(ispell-recursive-edit-marker): new marker saving return point.
(ispell-skip-region-alist): New variable defining regions.
(ispell-tex-skip-alists): New variable for LaTeX regions.
(ispell-skip-sgml): Now buffer-mode aware.
(ispell-highlight-p): Support block cursors.
(ispell-message-text-end): Don't check signatures.
(ispell-comments-and-strings): New command, added to menu.
(ispell-int-char): New function for character incrementing.
(ispell-word): Produces message on error when called from
ispell-minor-mode. Potential infinite loop removed.
(ispell-command-loop): prevent XEmacs modeline hiding.
Allow temporary split of dedicated windows. Improve recursive
edit support. Support block cursors.
(ispell-show-choices): New function cleaning up command loop.
(ispell-highlight-spelling-error-generic): Block cursor support added.
(ispell-highlight-spelling-error-xemacs): Block cursor, name change.
(ispell-overlay-window): dedicated window splitting, XEmacs changes.
(ispell-parse-output): Displays ispell process error messages.
(check-ispell-version): Interactive mode that shows ispell versions.
(ispell-begin-skip-region-regexp): New region skipping function.
(ispell-begin-tex-skip-regexp): New tex mode region skipping function.
(ispell-begin-skip-region): New region skipping function.
(ispell-tex-arg-end): New tex mode region skipping function.
(ispell-skip-region): New region skipping function.
(ispell-get-line): New function to clean up command loop.
(ispell-process-line): New function cleaning up command loop.
(ispell-continue): Improve recursive editor support.
(ispell-complete-word): Interior fragment support improved.
(ispell-message): Region skipping vastly improved.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 30 Apr 1998 06:43:48 +0000 |
parents | 9861518505cb |
children | d5904b1c89af |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1976
diff
changeset
|
1 ;;; etags.el --- etags facility for Emacs |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
2 ;; Copyright (C) 1985, 1986, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1998 |
1806
da47cfb7624e
(visit-tags-table-buffer): Error if called with 'same and no current table.
Roland McGrath <roland@gnu.org>
parents:
1724
diff
changeset
|
3 ;; Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
824
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
5 ;; Author: Roland McGrath <roland@gnu.ai.mit.edu> |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
6 ;; Keywords: tools |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
7 |
342 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
727 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
342 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
342 | 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 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
27 (require 'ring) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
28 |
360 | 29 ;;;###autoload |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
30 (defvar tags-file-name nil |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
31 "*File name of tags table. |
799 | 32 To switch to a new tags table, setting this variable is sufficient. |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
33 If you set this variable, do not also set `tags-table-list'. |
799 | 34 Use the `etags' program to make a tags table file.") |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
35 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. |
824 | 36 ;;;###autoload (put 'tags-file-name 'variable-interactive "fVisit tags table: ") |
799 | 37 |
20836
18b33fb503f3
(etags): Fix defgroup syntax. Why should it
Kenichi Handa <handa@m17n.org>
parents:
20799
diff
changeset
|
38 (defgroup etags nil "Tags tables" |
20515 | 39 :group 'tools) |
40 | |
799 | 41 ;;;###autoload |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
42 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list. |
20515 | 43 (defcustom tags-table-list nil |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
44 "*List of file names of tags tables to search. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
45 An element that is a directory means the file \"TAGS\" in that directory. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
46 To switch to a new list of tags tables, setting this variable is sufficient. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
47 If you set this variable, do not also set `tags-file-name'. |
20515 | 48 Use the `etags' program to make a tags table file." |
49 :group 'etags | |
50 :type '(repeat file)) | |
799 | 51 |
6140
35fc497c9f4e
(tags-add-tables): Change default value to 'ask-user; update doc.
Roland McGrath <roland@gnu.org>
parents:
5892
diff
changeset
|
52 ;;;###autoload |
20515 | 53 (defcustom tags-add-tables 'ask-user |
7112
91ba2f787c8f
(tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6245
diff
changeset
|
54 "*Control whether to add a new tags table to the current list. |
91ba2f787c8f
(tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6245
diff
changeset
|
55 t means do; nil means don't (always start a new list). |
91ba2f787c8f
(tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6245
diff
changeset
|
56 Any other value means ask the user whether to add a new tags table |
20515 | 57 to the current list (as opposed to starting a new list)." |
58 :group 'etags | |
59 :type '(choice (const :tag "Do" t) | |
60 (const :tag "Don't" nil) | |
61 (const :tag "Ask" ask-user))) | |
62 | |
63 (defcustom tags-revert-without-query nil | |
64 "*Non-nil means reread a TAGS table without querying, if it has changed." | |
65 :group 'etags | |
66 :type 'boolean) | |
5174
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
67 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
68 (defvar tags-table-computed-list nil |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
69 "List of tags tables to search, computed from `tags-table-list'. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
70 This includes tables implicitly included by other tables. The list is not |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
71 always complete: the included tables of a table are not known until that |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
72 table is read into core. An element that is `t' is a placeholder |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
73 indicating that the preceding element is a table that has not been read |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
74 into core and might contain included tables to search. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
75 See `tags-table-check-computed-list'.") |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
76 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
77 (defvar tags-table-computed-list-for nil |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
78 "Value of `tags-table-list' that `tags-table-computed-list' corresponds to. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
79 If `tags-table-list' changes, `tags-table-computed-list' is thrown away and |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
80 recomputed; see `tags-table-check-computed-list'.") |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
81 |
799 | 82 (defvar tags-table-list-pointer nil |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
83 "Pointer into `tags-table-computed-list' for the current state of searching. |
1149 | 84 Use `visit-tags-table-buffer' to cycle through tags tables in this list.") |
85 | |
86 (defvar tags-table-list-started-at nil | |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
87 "Pointer into `tags-table-computed-list', where the current search started.") |
799 | 88 |
89 (defvar tags-table-set-list nil | |
90 "List of sets of tags table which have been used together in the past. | |
91 Each element is a list of strings which are file names.") | |
342 | 92 |
799 | 93 ;;;###autoload |
20515 | 94 (defcustom find-tag-hook nil |
799 | 95 "*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. |
96 The value in the buffer in which \\[find-tag] is done is used, | |
20515 | 97 not the value in the buffer \\[find-tag] goes to." |
98 :group 'etags | |
99 :type 'hook) | |
799 | 100 |
101 ;;;###autoload | |
20515 | 102 (defcustom find-tag-default-function nil |
1149 | 103 "*A function of no arguments used by \\[find-tag] to pick a default tag. |
104 If nil, and the symbol that is the value of `major-mode' | |
799 | 105 has a `find-tag-default-function' property (see `put'), that is used. |
20515 | 106 Otherwise, `find-tag-default' is used." |
107 :group 'etags | |
108 :type 'function) | |
342 | 109 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
110 (defcustom find-tag-marker-ring-length 16 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
111 "*Length of marker rings `find-tag-marker-ring' and `tags-location-ring'." |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
112 :group 'etags |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21097
diff
changeset
|
113 :type 'integer |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21097
diff
changeset
|
114 :version "20.3") |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
115 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
116 (defvar find-tag-marker-ring (make-ring find-tag-marker-ring-length) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
117 "Ring of markers which are locations from which \\[find-tag] was invoked.") |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
118 |
799 | 119 (defvar default-tags-table-function nil |
5174
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
120 "If non-nil, a function to choose a default tags file for a buffer. |
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
121 This function receives no arguments and should return the default |
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
122 tags table file to use for the current buffer.") |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
123 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
124 (defvar tags-location-ring (make-ring find-tag-marker-ring-length) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
125 "Ring of markers which are locations visited by \\[find-tag]. |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
126 Pop back to the last location with \\[negative-argument] \\[find-tag].") |
799 | 127 |
128 ;; Tags table state. | |
129 ;; These variables are local in tags table buffers. | |
130 | |
131 (defvar tags-table-files nil | |
132 "List of file names covered by current tags table. | |
133 nil means it has not yet been computed; use `tags-table-files' to do so.") | |
134 | |
135 (defvar tags-completion-table nil | |
136 "Alist of tag names defined in current tags table.") | |
137 | |
138 (defvar tags-included-tables nil | |
139 "List of tags tables included by the current tags table.") | |
140 | |
141 (defvar next-file-list nil | |
142 "List of files for \\[next-file] to process.") | |
143 | |
144 ;; Hooks for file formats. | |
145 | |
146 (defvar tags-table-format-hooks '(etags-recognize-tags-table | |
824 | 147 recognize-empty-tags-table) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
148 "List of functions to be called in a tags table buffer to identify the type of tags table. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
149 The functions are called in order, with no arguments, |
799 | 150 until one returns non-nil. The function should make buffer-local bindings |
151 of the format-parsing tags function variables if successful.") | |
152 | |
153 (defvar file-of-tag-function nil | |
154 "Function to do the work of `file-of-tag' (which see).") | |
155 (defvar tags-table-files-function nil | |
156 "Function to do the work of `tags-table-files' (which see).") | |
157 (defvar tags-completion-table-function nil | |
158 "Function to build the tags-completion-table.") | |
159 (defvar snarf-tag-function nil | |
160 "Function to get info about a matched tag for `goto-tag-location-function'.") | |
161 (defvar goto-tag-location-function nil | |
162 "Function of to go to the location in the buffer specified by a tag. | |
163 One argument, the tag info returned by `snarf-tag-function'.") | |
164 (defvar find-tag-regexp-search-function nil | |
165 "Search function passed to `find-tag-in-order' for finding a regexp tag.") | |
166 (defvar find-tag-regexp-tag-order nil | |
167 "Tag order passed to `find-tag-in-order' for finding a regexp tag.") | |
168 (defvar find-tag-regexp-next-line-after-failure-p nil | |
169 "Flag passed to `find-tag-in-order' for finding a regexp tag.") | |
170 (defvar find-tag-search-function nil | |
171 "Search function passed to `find-tag-in-order' for finding a tag.") | |
172 (defvar find-tag-tag-order nil | |
173 "Tag order passed to `find-tag-in-order' for finding a tag.") | |
174 (defvar find-tag-next-line-after-failure-p nil | |
175 "Flag passed to `find-tag-in-order' for finding a tag.") | |
176 (defvar list-tags-function nil | |
177 "Function to do the work of `list-tags' (which see).") | |
178 (defvar tags-apropos-function nil | |
179 "Function to do the work of `tags-apropos' (which see).") | |
180 (defvar tags-included-tables-function nil | |
181 "Function to do the work of `tags-included-tables' (which see).") | |
182 (defvar verify-tags-table-function nil | |
19358
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
183 "Function to return t iff current buffer contains valid tags file.") |
799 | 184 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
185 ;; Initialize the tags table in the current buffer. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
186 ;; Returns non-nil iff it is a valid tags table. On |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
187 ;; non-nil return, the tags table state variable are |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
188 ;; made buffer-local and initialized to nil. |
799 | 189 (defun initialize-new-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
190 (set (make-local-variable 'tags-table-files) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
191 (set (make-local-variable 'tags-completion-table) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
192 (set (make-local-variable 'tags-included-tables) nil) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
193 (setq find-tag-marker-ring (make-ring find-tag-marker-ring-length)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
194 (setq tags-location-ring (make-ring find-tag-marker-ring-length)) |
799 | 195 ;; Value is t if we have found a valid tags table buffer. |
196 (let ((hooks tags-table-format-hooks)) | |
197 (while (and hooks | |
198 (not (funcall (car hooks)))) | |
199 (setq hooks (cdr hooks))) | |
200 hooks)) | |
201 | |
202 ;;;###autoload | |
203 (defun visit-tags-table (file &optional local) | |
204 "Tell tags commands to use tags table file FILE. | |
342 | 205 FILE should be the name of a file created with the `etags' program. |
799 | 206 A directory name is ok too; it means file TAGS in that directory. |
207 | |
208 Normally \\[visit-tags-table] sets the global value of `tags-file-name'. | |
209 With a prefix arg, set the buffer-local value instead. | |
210 When you find a tag with \\[find-tag], the buffer it finds the tag | |
211 in is given a local value of this variable which is the name of the tags | |
212 file the tag was in." | |
342 | 213 (interactive (list (read-file-name "Visit tags table: (default TAGS) " |
214 default-directory | |
799 | 215 (expand-file-name "TAGS" |
216 default-directory) | |
217 t) | |
218 current-prefix-arg)) | |
7287
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
219 (or (stringp file) (signal 'wrong-type-argument (list 'stringp file))) |
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
220 ;; Bind tags-file-name so we can control below whether the local or |
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
221 ;; global value gets set. Calling visit-tags-table-buffer will |
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
222 ;; initialize a buffer for the file and set tags-file-name to the |
10661
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
223 ;; Calling visit-tags-table-buffer with tags-file-name set to FILE will |
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
224 ;; initialize a buffer for FILE and set tags-file-name to the |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
225 ;; fully-expanded name. |
1138 | 226 (let ((tags-file-name file)) |
227 (save-excursion | |
7287
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
228 (or (visit-tags-table-buffer file) |
1138 | 229 (signal 'file-error (list "Visiting tags table" |
230 "file does not exist" | |
231 file))) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
232 ;; Set FILE to the expanded name. |
1138 | 233 (setq file tags-file-name))) |
799 | 234 (if local |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
235 ;; Set the local value of tags-file-name. |
1149 | 236 (set (make-local-variable 'tags-file-name) file) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
237 ;; Set the global value of tags-file-name. |
1138 | 238 (setq-default tags-file-name file))) |
239 | |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
240 (defun tags-table-check-computed-list () |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
241 "Compute `tags-table-computed-list' from `tags-table-list' if necessary." |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
242 (let ((expanded-list (mapcar 'tags-expand-table-name tags-table-list))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
243 (or (equal tags-table-computed-list-for expanded-list) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
244 ;; The list (or default-directory) has changed since last computed. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
245 (let* ((compute-for (mapcar 'copy-sequence expanded-list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
246 (tables (copy-sequence compute-for)) ;Mutated in the loop. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
247 (computed nil) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
248 table-buffer) |
1149 | 249 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
250 (while tables |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
251 (setq computed (cons (car tables) computed) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
252 table-buffer (get-file-buffer (car tables))) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
253 (if (and table-buffer |
9020
857ced7767c0
(tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents:
8973
diff
changeset
|
254 ;; There is a buffer visiting the file. Now make sure |
857ced7767c0
(tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents:
8973
diff
changeset
|
255 ;; it is initialized as a tag table buffer. |
857ced7767c0
(tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents:
8973
diff
changeset
|
256 (save-excursion |
857ced7767c0
(tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents:
8973
diff
changeset
|
257 (tags-verify-table (buffer-file-name table-buffer)))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
258 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
259 (set-buffer table-buffer) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
260 (if (tags-included-tables) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
261 ;; Insert the included tables into the list we |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
262 ;; are processing. |
13165
e5431229a09f
(tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents:
12942
diff
changeset
|
263 (setcdr tables (nconc (mapcar 'tags-expand-table-name |
e5431229a09f
(tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents:
12942
diff
changeset
|
264 (tags-included-tables)) |
e5431229a09f
(tags-table-check-computed-list): Map tags-expand-table-name over lists of
Roland McGrath <roland@gnu.org>
parents:
12942
diff
changeset
|
265 (cdr tables))))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
266 ;; This table is not in core yet. Insert a placeholder |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
267 ;; saying we must read it into core to check for included |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
268 ;; tables before searching the next table in the list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
269 (setq computed (cons t computed))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
270 (setq tables (cdr tables))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
271 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
272 ;; Record the tags-table-list value (and the context of the |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
273 ;; current directory) we computed from. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
274 (setq tags-table-computed-list-for compute-for |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
275 tags-table-computed-list (nreverse computed)))))) |
1149 | 276 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
277 ;; Extend `tags-table-computed-list' to remove the first `t' placeholder. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
278 ;; An element of the list that is `t' is a placeholder indicating that the |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
279 ;; preceding element is a table that has not been read into core and might |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
280 ;; contain included tables to search. On return, the first placeholder |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
281 ;; element will be gone and the element before it read into core and its |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
282 ;; included tables inserted into the list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
283 (defun tags-table-extend-computed-list () |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
284 (let ((list tags-table-computed-list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
285 (while (not (eq (nth 1 list) t)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
286 (setq list (cdr list))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
287 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
288 (if (tags-verify-table (car list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
289 ;; We are now in the buffer visiting (car LIST). Extract its |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
290 ;; list of included tables and insert it into the computed list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
291 (let ((tables (tags-included-tables)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
292 (computed nil) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
293 table-buffer) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
294 (while tables |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
295 (setq computed (cons (car tables) computed) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
296 table-buffer (get-file-buffer (car tables))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
297 (if table-buffer |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
298 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
299 (set-buffer table-buffer) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
300 (if (tags-included-tables) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
301 ;; Insert the included tables into the list we |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
302 ;; are processing. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
303 (setcdr tables (append (tags-included-tables) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
304 tables)))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
305 ;; This table is not in core yet. Insert a placeholder |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
306 ;; saying we must read it into core to check for included |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
307 ;; tables before searching the next table in the list. |
8623
428abda49671
(tags-table-extend-computed-list): In loop processing list of included
Roland McGrath <roland@gnu.org>
parents:
8509
diff
changeset
|
308 (setq computed (cons t computed))) |
428abda49671
(tags-table-extend-computed-list): In loop processing list of included
Roland McGrath <roland@gnu.org>
parents:
8509
diff
changeset
|
309 (setq tables (cdr tables))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
310 (setq computed (nreverse computed)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
311 ;; COMPUTED now contains the list of included tables (and |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
312 ;; tables included by them, etc.). Now splice this into the |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
313 ;; current list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
314 (setcdr list (nconc computed (cdr (cdr list))))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
315 ;; It was not a valid table, so just remove the following placeholder. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
316 (setcdr list (cdr (cdr list))))))) |
1149 | 317 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
318 ;; Expand tags table name FILE into a complete file name. |
1149 | 319 (defun tags-expand-table-name (file) |
320 (setq file (expand-file-name file)) | |
321 (if (file-directory-p file) | |
322 (expand-file-name "TAGS" file) | |
323 file)) | |
1138 | 324 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
325 ;; Like member, but comparison is done after tags-expand-table-name on both |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
326 ;; sides and elements of LIST that are t are skipped. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
327 (defun tags-table-list-member (file list) |
1149 | 328 (setq file (tags-expand-table-name file)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
329 (while (and list |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
330 (or (eq (car list) t) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
331 (not (string= file (tags-expand-table-name (car list)))))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
332 (setq list (cdr list))) |
1149 | 333 list) |
334 | |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
335 (defun tags-verify-table (file) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
336 "Read FILE into a buffer and verify that it is a valid tags table. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
337 Sets the current buffer to one visiting FILE (if it exists). |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
338 Returns non-nil iff it is a valid table." |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
339 (if (get-file-buffer file) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
340 ;; The file is already in a buffer. Check for the visited file |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
341 ;; having changed since we last used it. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
342 (let (win) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
343 (set-buffer (get-file-buffer file)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
344 (setq win (or verify-tags-table-function (initialize-new-tags-table))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
345 (if (or (verify-visited-file-modtime (current-buffer)) |
19358
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
346 ;; Decide whether to revert the file. |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
347 ;; revert-without-query can say to revert |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
348 ;; or the user can say to revert. |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
349 (not (or (let ((tail revert-without-query) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
350 (found nil)) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
351 (while tail |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
352 (if (string-match (car tail) buffer-file-name) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
353 (setq found t)) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
354 (setq tail (cdr tail))) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
355 found) |
20515 | 356 tags-revert-without-query |
19358
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
357 (yes-or-no-p |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
358 (format "Tags file %s has changed, read new contents? " |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
359 file))))) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
360 (and verify-tags-table-function |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
361 (funcall verify-tags-table-function)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
362 (revert-buffer t t) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
363 (initialize-new-tags-table))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
364 (and (file-exists-p file) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
365 (progn |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
366 (set-buffer (find-file-noselect file)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
367 (or (string= file buffer-file-name) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
368 ;; find-file-noselect has changed the file name. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
369 ;; Propagate the change to tags-file-name and tags-table-list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
370 (let ((tail (member file tags-table-list))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
371 (if tail |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
372 (setcar tail buffer-file-name)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
373 (if (eq file tags-file-name) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
374 (setq tags-file-name buffer-file-name)))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
375 (initialize-new-tags-table))))) |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
376 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
377 ;; Subroutine of visit-tags-table-buffer. Search the current tags tables |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
378 ;; for one that has tags for THIS-FILE (or that includes a table that |
8040
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
379 ;; does). Return the name of the first table table listing THIS-FILE; if |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
380 ;; the table is one included by another table, it is the master table that |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
381 ;; we return. If CORE-ONLY is non-nil, check only tags tables that are |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
382 ;; already in buffers--don't visit any new files. |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
383 (defun tags-table-including (this-file core-only) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
384 (let ((tables tags-table-computed-list) |
7211
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
385 (found nil)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
386 ;; Loop over the list, looking for a table containing tags for THIS-FILE. |
1149 | 387 (while (and (not found) |
388 tables) | |
1138 | 389 |
8509
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
390 (if core-only |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
391 ;; Skip tables not in core. |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
392 (while (eq (nth 1 tables) t) |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
393 (setq tables (cdr (cdr tables)))) |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
394 (if (eq (nth 1 tables) t) |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
395 ;; This table has not been read into core yet. Read it in now. |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
396 (tags-table-extend-computed-list))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
397 |
8014
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
398 (if tables |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
399 ;; Select the tags table buffer and get the file list up to date. |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
400 (let ((tags-file-name (car tables))) |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
401 (visit-tags-table-buffer 'same) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
402 (if (member this-file (mapcar 'expand-file-name |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
403 (tags-table-files))) |
8014
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
404 ;; Found it. |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
405 (setq found tables)))) |
1149 | 406 (setq tables (cdr tables))) |
8014
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
407 (if found |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
408 ;; Now determine if the table we found was one included by another |
9928
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
409 ;; table, not explicitly listed. We do this by checking each |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
410 ;; element of the computed list to see if it appears in the user's |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
411 ;; explicit list; the last element we will check is FOUND itself. |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
412 ;; Then we return the last one which did in fact appear in |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
413 ;; tags-table-list. |
8014
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
414 (let ((could-be nil) |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
415 (elt tags-table-computed-list)) |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
416 (while (not (eq elt (cdr found))) |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
417 (if (tags-table-list-member (car elt) tags-table-list) |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
418 ;; This table appears in the user's list, so it could be |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
419 ;; the one which includes the table we found. |
9928
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
420 (setq could-be (car elt))) |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
421 (setq elt (cdr elt)) |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
422 (if (eq t (car elt)) |
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
423 (setq elt (cdr elt)))) |
8015
3d6ee294a710
Fix bits of last change lost in Emacs crash.
Roland McGrath <roland@gnu.org>
parents:
8014
diff
changeset
|
424 ;; The last element we found in the computed list before FOUND |
3d6ee294a710
Fix bits of last change lost in Emacs crash.
Roland McGrath <roland@gnu.org>
parents:
8014
diff
changeset
|
425 ;; that appears in the user's list will be the table that |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
426 ;; included the one we found. |
9928
d49a23c098df
(tags-table-including): Don't gratuitously cons (what was I thinking?).
Roland McGrath <roland@gnu.org>
parents:
9631
diff
changeset
|
427 could-be)))) |
799 | 428 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
429 ;; Subroutine of visit-tags-table-buffer. Move tags-table-list-pointer |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
430 ;; along and set tags-file-name. Returns nil when out of tables. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
431 (defun tags-next-table () |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
432 ;; If there is a placeholder element next, compute the list to replace it. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
433 (while (eq (nth 1 tags-table-list-pointer) t) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
434 (tags-table-extend-computed-list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
435 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
436 ;; Go to the next table in the list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
437 (setq tags-table-list-pointer (cdr tags-table-list-pointer)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
438 (or tags-table-list-pointer |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
439 ;; Wrap around. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
440 (setq tags-table-list-pointer tags-table-computed-list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
441 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
442 (if (eq tags-table-list-pointer tags-table-list-started-at) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
443 ;; We have come full circle. No more tables. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
444 (setq tags-table-list-pointer nil) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
445 ;; Set tags-file-name to the name from the list. It is already expanded. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
446 (setq tags-file-name (car tags-table-list-pointer)))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
447 |
799 | 448 (defun visit-tags-table-buffer (&optional cont) |
449 "Select the buffer containing the current tags table. | |
7287
0e89007c19c6
(visit-tags-tbale-buffer): If CONT is stringp, use it for tags-file-name.
Roland McGrath <roland@gnu.org>
parents:
7284
diff
changeset
|
450 If optional arg is a string, visit that file as a tags table. |
799 | 451 If optional arg is t, visit the next table in `tags-table-list'. |
452 If optional arg is the atom `same', don't look for a new table; | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
453 just select the buffer visiting `tags-file-name'. |
1149 | 454 If arg is nil or absent, choose a first buffer from information in |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
455 `tags-file-name', `tags-table-list', `tags-table-list-pointer'. |
799 | 456 Returns t if it visits a tags table, or nil if there are no more in the list." |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
457 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
458 ;; Set tags-file-name to the tags table file we want to visit. |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
459 (cond ((eq cont 'same) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
460 ;; Use the ambient value of tags-file-name. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
461 (or tags-file-name |
14420
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
462 (error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
463 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
464 (concat "No tags table in use; " |
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
465 "use \\[visit-tags-table] to select one"))))) |
1138 | 466 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
467 ((eq t cont) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
468 ;; Find the next table. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
469 (if (tags-next-table) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
470 ;; Skip over nonexistent files. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
471 (while (and (not (or (get-file-buffer tags-file-name) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
472 (file-exists-p tags-file-name))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
473 (tags-next-table))))) |
7211
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
474 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
475 (t |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
476 ;; Pick a table out of our hat. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
477 (tags-table-check-computed-list) ;Get it up to date, we might use it. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
478 (setq tags-file-name |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
479 (or |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
480 ;; If passed a string, use that. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
481 (if (stringp cont) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
482 (prog1 cont |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
483 (setq cont nil))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
484 ;; First, try a local variable. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
485 (cdr (assq 'tags-file-name (buffer-local-variables))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
486 ;; Second, try a user-specified function to guess. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
487 (and default-tags-table-function |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
488 (funcall default-tags-table-function)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
489 ;; Third, look for a tags table that contains tags for the |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
490 ;; current buffer's file. If one is found, the lists will |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
491 ;; be frobnicated, and CONT will be set non-nil so we don't |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
492 ;; do it below. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
493 (and buffer-file-name |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
494 (or |
8040
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
495 ;; First check only tables already in buffers. |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
496 (tags-table-including buffer-file-name t) |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
497 ;; Since that didn't find any, now do the |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
498 ;; expensive version: reading new files. |
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
499 (tags-table-including buffer-file-name nil))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
500 ;; Fourth, use the user variable tags-file-name, if it is |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
501 ;; not already in the current list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
502 (and tags-file-name |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
503 (not (tags-table-list-member tags-file-name |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
504 tags-table-computed-list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
505 tags-file-name) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
506 ;; Fifth, use the user variable giving the table list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
507 ;; Find the first element of the list that actually exists. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
508 (let ((list tags-table-list) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
509 file) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
510 (while (and list |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
511 (setq file (tags-expand-table-name (car list))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
512 (not (get-file-buffer file)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
513 (not (file-exists-p file))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
514 (setq list (cdr list))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
515 (car list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
516 ;; Finally, prompt the user for a file name. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
517 (expand-file-name |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
518 (read-file-name "Visit tags table: (default TAGS) " |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
519 default-directory |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
520 "TAGS" |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
521 t)))))) |
1138 | 522 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
523 ;; Expand the table name into a full file name. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
524 (setq tags-file-name (tags-expand-table-name tags-file-name)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
525 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
526 (if (and (eq cont t) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
527 (null tags-table-list-pointer)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
528 ;; All out of tables. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
529 nil |
1149 | 530 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
531 ;; Verify that tags-file-name names a valid tags table. |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
532 ;; Bind another variable with the value of tags-file-name |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
533 ;; before we switch buffers, in case tags-file-name is buffer-local. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
534 (let ((curbuf (current-buffer)) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
535 (local-tags-file-name tags-file-name)) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
536 (if (tags-verify-table local-tags-file-name) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
537 |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
538 ;; We have a valid tags table. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
539 (progn |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
540 ;; Bury the tags table buffer so it |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
541 ;; doesn't get in the user's way. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
542 (bury-buffer (current-buffer)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
543 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
544 ;; If this was a new table selection (CONT is nil), make |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
545 ;; sure tags-table-list includes the chosen table, and |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
546 ;; update the list pointer variables. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
547 (or cont |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
548 ;; Look in the list for the table we chose. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
549 (let ((found (tags-table-list-member |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
550 local-tags-file-name |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
551 tags-table-computed-list))) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
552 (if found |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
553 ;; There it is. Just switch to it. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
554 (setq tags-table-list-pointer found |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
555 tags-table-list-started-at found) |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
556 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
557 ;; The table is not in the current set. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
558 ;; Try to find it in another previously used set. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
559 (let ((sets tags-table-set-list)) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
560 (while (and sets |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
561 (not (tags-table-list-member |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
562 local-tags-file-name |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
563 (car sets)))) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
564 (setq sets (cdr sets))) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
565 (if sets |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
566 ;; Found in some other set. Switch to that set. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
567 (progn |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
568 (or (memq tags-table-list tags-table-set-list) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
569 ;; Save the current list. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
570 (setq tags-table-set-list |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
571 (cons tags-table-list |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
572 tags-table-set-list))) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
573 (setq tags-table-list (car sets))) |
1149 | 574 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
575 ;; Not found in any existing set. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
576 (if (and tags-table-list |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
577 (or (eq t tags-add-tables) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
578 (and tags-add-tables |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
579 (y-or-n-p |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
580 (concat "Keep current list of " |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
581 "tags tables also? "))))) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
582 ;; Add it to the current list. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
583 (setq tags-table-list (cons local-tags-file-name |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
584 tags-table-list)) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
585 |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
586 ;; Make a fresh list, and store the old one. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
587 (message "Starting a new list of tags tables") |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
588 (or (null tags-table-list) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
589 (memq tags-table-list tags-table-set-list) |
7211
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
590 (setq tags-table-set-list |
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
591 (cons tags-table-list |
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
592 tags-table-set-list))) |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
593 (setq tags-table-list (list local-tags-file-name)))) |
7211
b2485e94101a
(tags-table-parent-pointer-list): Doc fix; elts are now 3-elt lists.
Roland McGrath <roland@gnu.org>
parents:
7112
diff
changeset
|
594 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
595 ;; Recompute tags-table-computed-list. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
596 (tags-table-check-computed-list) |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
597 ;; Set the tags table list state variables to start |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
598 ;; over from tags-table-computed-list. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
599 (setq tags-table-list-started-at tags-table-computed-list |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
600 tags-table-list-pointer |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
601 tags-table-computed-list))))) |
1156 | 602 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
603 ;; Return of t says the tags table is valid. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
604 t) |
1149 | 605 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
606 ;; The buffer was not valid. Don't use it again. |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
607 (set-buffer curbuf) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
608 (kill-local-variable 'tags-file-name) |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
609 (if (eq local-tags-file-name tags-file-name) |
8116
67c8a970fd4d
(visit-tags-table-buffer): Move error call into scope of `file'.
Richard M. Stallman <rms@gnu.org>
parents:
8082
diff
changeset
|
610 (setq tags-file-name nil)) |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
611 (error "File %s is not a valid tags table" local-tags-file-name))))) |
9525
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
612 |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
613 (defun tags-reset-tags-tables () |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
614 "Reset tags state to cancel effect of any previous \\[visit-tags-table] or \\[find-tag]." |
9525
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
615 (interactive) |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
616 (setq tags-file-name nil |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
617 tags-location-ring (progn |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
618 (mapcar (lambda (m) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
619 (set-marker m nil)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
620 tags-location-ring) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
621 (make-ring find-tag-marker-ring-length)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
622 find-tag-marker-ring (progn |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
623 (mapcar (lambda (m) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
624 (set-marker m nil)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
625 find-tag-marker-ring) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
626 (make-ring find-tag-marker-ring-length)) |
9525
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
627 tags-table-list nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
628 tags-table-computed-list nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
629 tags-table-computed-list-for nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
630 tags-table-list-pointer nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
631 tags-table-list-started-at nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
632 tags-table-set-list nil)) |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
633 |
342 | 634 (defun file-of-tag () |
635 "Return the file name of the file whose tags point is within. | |
799 | 636 Assumes the tags table is the current buffer. |
637 File name returned is relative to tags table file's directory." | |
638 (funcall file-of-tag-function)) | |
342 | 639 |
360 | 640 ;;;###autoload |
799 | 641 (defun tags-table-files () |
642 "Return a list of files in the current tags table. | |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
643 Assumes the tags table is the current buffer. The file names are returned |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
644 as they appeared in the `etags' command that created the table, usually |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
645 without directory names." |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
646 (or tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
647 (setq tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
648 (funcall tags-table-files-function)))) |
799 | 649 |
650 (defun tags-included-tables () | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
651 "Return a list of tags tables included by the current table. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
652 Assumes the tags table is the current buffer." |
799 | 653 (or tags-included-tables |
654 (setq tags-included-tables (funcall tags-included-tables-function)))) | |
655 | |
656 ;; Build tags-completion-table on demand. The single current tags table | |
657 ;; and its included tags tables (and their included tables, etc.) have | |
658 ;; their tags included in the completion table. | |
659 (defun tags-completion-table () | |
660 (or tags-completion-table | |
661 (condition-case () | |
662 (prog2 | |
663 (message "Making tags completion table for %s..." buffer-file-name) | |
664 (let ((included (tags-included-tables)) | |
665 (table (funcall tags-completion-table-function))) | |
666 (save-excursion | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
667 ;; Iterate over the list of included tables, and combine each |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
668 ;; included table's completion obarray to the parent obarray. |
799 | 669 (while included |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
670 ;; Visit the buffer. |
799 | 671 (let ((tags-file-name (car included))) |
1149 | 672 (visit-tags-table-buffer 'same)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
673 ;; Recurse in that buffer to compute its completion table. |
799 | 674 (if (tags-completion-table) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
675 ;; Combine the tables. |
799 | 676 (mapatoms (function |
677 (lambda (sym) | |
678 (intern (symbol-name sym) table))) | |
679 tags-completion-table)) | |
680 (setq included (cdr included)))) | |
681 (setq tags-completion-table table)) | |
682 (message "Making tags completion table for %s...done" | |
683 buffer-file-name)) | |
684 (quit (message "Tags completion table construction aborted.") | |
685 (setq tags-completion-table nil))))) | |
686 | |
687 ;; Completion function for tags. Does normal try-completion, | |
688 ;; but builds tags-completion-table on demand. | |
689 (defun tags-complete-tag (string predicate what) | |
690 (save-excursion | |
5079
1d253bc912d8
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents:
4940
diff
changeset
|
691 ;; If we need to ask for the tag table, allow that. |
1d253bc912d8
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents:
4940
diff
changeset
|
692 (let ((enable-recursive-minibuffers t)) |
1d253bc912d8
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents:
4940
diff
changeset
|
693 (visit-tags-table-buffer)) |
799 | 694 (if (eq what t) |
695 (all-completions string (tags-completion-table) predicate) | |
696 (try-completion string (tags-completion-table) predicate)))) | |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
697 |
342 | 698 ;; Return a default tag to search for, based on the text at point. |
699 (defun find-tag-default () | |
700 (save-excursion | |
701 (while (looking-at "\\sw\\|\\s_") | |
702 (forward-char 1)) | |
799 | 703 (if (or (re-search-backward "\\sw\\|\\s_" |
704 (save-excursion (beginning-of-line) (point)) | |
705 t) | |
706 (re-search-forward "\\(\\sw\\|\\s_\\)+" | |
707 (save-excursion (end-of-line) (point)) | |
708 t)) | |
709 (progn (goto-char (match-end 0)) | |
342 | 710 (buffer-substring (point) |
711 (progn (forward-sexp -1) | |
712 (while (looking-at "\\s'") | |
713 (forward-char 1)) | |
714 (point)))) | |
715 nil))) | |
716 | |
799 | 717 ;; Read a tag name from the minibuffer with defaulting and completion. |
342 | 718 (defun find-tag-tag (string) |
799 | 719 (let* ((default (funcall (or find-tag-default-function |
720 (get major-mode 'find-tag-default-function) | |
721 'find-tag-default))) | |
722 (spec (completing-read (if default | |
723 (format "%s(default %s) " string default) | |
724 string) | |
19735
73c2effb07a4
(find-tag-tag): Pass default to completing-read.
Richard M. Stallman <rms@gnu.org>
parents:
19358
diff
changeset
|
725 'tags-complete-tag |
73c2effb07a4
(find-tag-tag): Pass default to completing-read.
Richard M. Stallman <rms@gnu.org>
parents:
19358
diff
changeset
|
726 nil nil nil nil default))) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
727 (if (equal spec "") |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
728 (or default (error "There is no default tag")) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
729 spec))) |
342 | 730 |
852 | 731 (defvar last-tag nil |
732 "Last tag found by \\[find-tag].") | |
733 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
734 ;; Get interactive args for find-tag{-noselect,-other-window,-regexp}. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
735 (defun find-tag-interactive (prompt &optional no-default) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
736 (if current-prefix-arg |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
737 (list nil (if (< (prefix-numeric-value current-prefix-arg) 0) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
738 '- |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
739 t)) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
740 (list (if no-default |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
741 (read-string prompt) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
742 (find-tag-tag prompt))))) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
743 |
7904
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
744 (defvar find-tag-history nil) |
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
745 |
799 | 746 ;;;###autoload |
747 (defun find-tag-noselect (tagname &optional next-p regexp-p) | |
748 "Find tag (in current tags table) whose name contains TAGNAME. | |
1555
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
749 Returns the buffer containing the tag's definition and moves its point there, |
799 | 750 but does not select the buffer. |
751 The default for TAGNAME is the expression in the buffer near point. | |
474 | 752 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
753 If second arg NEXT-P is t (interactively, with prefix arg), search for |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
754 another tag that matches the last tagname or regexp used. When there are |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
755 multiple matches for a tag, more exact matches are found first. If NEXT-P |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
756 is the atom `-' (interactively, with prefix arg that is a negative number |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
757 or just \\[negative-argument]), pop back to the previous tag gone to. |
450
0bac8c701777
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
449
diff
changeset
|
758 |
799 | 759 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
342 | 760 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
761 A marker representing the point when this command is onvoked is pushed |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
762 onto a ring and may be popped back to with \\[pop-tag-mark]. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
763 Contrast this with the ring of marks gone to by the command. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
764 |
799 | 765 See documentation of variable `tags-file-name'." |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
766 (interactive (find-tag-interactive "Find tag: ")) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
767 |
7904
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
768 (setq find-tag-history (cons tagname find-tag-history)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
769 ;; Save the current buffer's value of `find-tag-hook' before selecting the |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
770 ;; tags table buffer. |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
771 (let ((local-find-tag-hook find-tag-hook)) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
772 (if (eq '- next-p) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
773 ;; Pop back to a previous location. |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
774 (if (ring-empty-p tags-location-ring) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
775 (error "No previous tag locations") |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
776 (let ((marker (ring-remove tags-location-ring 0))) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
777 (prog1 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
778 ;; Move to the saved location. |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
779 (set-buffer (or (marker-buffer marker) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
780 (error "The marked buffer has been deleted"))) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
781 (goto-char (marker-position marker)) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3548
diff
changeset
|
782 ;; Kill that marker so it doesn't slow down editing. |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
783 (set-marker marker nil nil) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
784 ;; Run the user's hook. Do we really want to do this for pop? |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
785 (run-hooks 'local-find-tag-hook)))) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
786 ;; Record whence we came. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
787 (ring-insert find-tag-marker-ring (point-marker)) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
788 (if next-p |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
789 ;; Find the same table we last used. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
790 (visit-tags-table-buffer 'same) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
791 ;; Pick a table to use. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
792 (visit-tags-table-buffer) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
793 ;; Record TAGNAME for a future call with NEXT-P non-nil. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
794 (setq last-tag tagname)) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
795 ;; Record the location so we can pop back to it later. |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
796 (let ((marker (make-marker))) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
797 (save-excursion |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
798 (set-buffer |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
799 ;; find-tag-in-order does the real work. |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
800 (find-tag-in-order |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
801 (if next-p last-tag tagname) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
802 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
803 find-tag-regexp-search-function |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
804 find-tag-search-function) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
805 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
806 find-tag-regexp-tag-order |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
807 find-tag-tag-order) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
808 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
809 find-tag-regexp-next-line-after-failure-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
810 find-tag-next-line-after-failure-p) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
811 (if regexp-p "matching" "containing") |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
812 (not next-p))) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
813 (set-marker marker (point)) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
814 (run-hooks 'local-find-tag-hook) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
815 (ring-insert tags-location-ring marker) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
816 (current-buffer)))))) |
360 | 817 |
818 ;;;###autoload | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
819 (defun find-tag (tagname &optional next-p regexp-p) |
799 | 820 "Find tag (in current tags table) whose name contains TAGNAME. |
821 Select the buffer containing the tag's definition, and move point there. | |
822 The default for TAGNAME is the expression in the buffer around or before point. | |
342 | 823 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
824 If second arg NEXT-P is t (interactively, with prefix arg), search for |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
825 another tag that matches the last tagname or regexp used. When there are |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
826 multiple matches for a tag, more exact matches are found first. If NEXT-P |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
827 is the atom `-' (interactively, with prefix arg that is a negative number |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
828 or just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 829 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
830 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
831 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
832 A marker representing the point when this command is onvoked is pushed |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
833 onto a ring and may be popped back to with \\[pop-tag-mark]. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
834 Contrast this with the ring of marks gone to by the command. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
835 |
799 | 836 See documentation of variable `tags-file-name'." |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
837 (interactive (find-tag-interactive "Find tag: ")) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
838 (switch-to-buffer (find-tag-noselect tagname next-p regexp-p))) |
799 | 839 ;;;###autoload (define-key esc-map "." 'find-tag) |
342 | 840 |
727 | 841 ;;;###autoload |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
842 (defun find-tag-other-window (tagname &optional next-p regexp-p) |
799 | 843 "Find tag (in current tags table) whose name contains TAGNAME. |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
844 Select the buffer containing the tag's definition in another window, and |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
845 move point there. The default for TAGNAME is the expression in the buffer |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
846 around or before point. |
799 | 847 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
848 If second arg NEXT-P is t (interactively, with prefix arg), search for |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
849 another tag that matches the last tagname or regexp used. When there are |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
850 multiple matches for a tag, more exact matches are found first. If NEXT-P |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
851 is negative (interactively, with prefix arg that is a negative number or |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
852 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 853 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
854 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
855 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
856 A marker representing the point when this command is onvoked is pushed |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
857 onto a ring and may be popped back to with \\[pop-tag-mark]. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
858 Contrast this with the ring of marks gone to by the command. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
859 |
799 | 860 See documentation of variable `tags-file-name'." |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
861 (interactive (find-tag-interactive "Find tag other window: ")) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
862 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
863 ;; This hair is to deal with the case where the tag is found in the |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
864 ;; selected window's buffer; without the hair, point is moved in both |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
865 ;; windows. To prevent this, we save the selected window's point before |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
866 ;; doing find-tag-noselect, and restore it after. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
867 (let* ((window-point (window-point (selected-window))) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
868 (tagbuf (find-tag-noselect tagname next-p regexp-p)) |
1976
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
869 (tagpoint (progn (set-buffer tagbuf) (point)))) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
870 (set-window-point (prog1 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
871 (selected-window) |
1976
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
872 (switch-to-buffer-other-window tagbuf) |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
873 ;; We have to set this new window's point; it |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
874 ;; might already have been displaying a |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
875 ;; different portion of tagbuf, in which case |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
876 ;; switch-to-buffer-other-window doesn't set |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
877 ;; the window's point from the buffer. |
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
878 (set-window-point (selected-window) tagpoint)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
879 window-point))) |
799 | 880 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window) |
881 | |
804 | 882 ;;;###autoload |
799 | 883 (defun find-tag-other-frame (tagname &optional next-p) |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
884 "Find tag (in current tags table) whose name contains TAGNAME. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
885 Select the buffer containing the tag's definition in another frame, and |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
886 move point there. The default for TAGNAME is the expression in the buffer |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
887 around or before point. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
888 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
889 If second arg NEXT-P is t (interactively, with prefix arg), search for |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
890 another tag that matches the last tagname or regexp used. When there are |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
891 multiple matches for a tag, more exact matches are found first. If NEXT-P |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
892 is negative (interactively, with prefix arg that is a negative number or |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
893 just \\[negative-argument]), pop back to the previous tag gone to. |
727 | 894 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
895 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
896 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
897 A marker representing the point when this command is onvoked is pushed |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
898 onto a ring and may be popped back to with \\[pop-tag-mark]. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
899 Contrast this with the ring of marks gone to by the command. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
900 |
799 | 901 See documentation of variable `tags-file-name'." |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
902 (interactive (find-tag-interactive "Find tag other frame: ")) |
799 | 903 (let ((pop-up-frames t)) |
904 (find-tag-other-window tagname next-p))) | |
905 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame) | |
342 | 906 |
360 | 907 ;;;###autoload |
799 | 908 (defun find-tag-regexp (regexp &optional next-p other-window) |
909 "Find tag (in current tags table) whose name matches REGEXP. | |
910 Select the buffer containing the tag's definition and move point there. | |
911 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
912 If second arg NEXT-P is t (interactively, with prefix arg), search for |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
913 another tag that matches the last tagname or regexp used. When there are |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
914 multiple matches for a tag, more exact matches are found first. If NEXT-P |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
915 is negative (interactively, with prefix arg that is a negative number or |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
916 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 917 |
918 If third arg OTHER-WINDOW is non-nil, select the buffer in another window. | |
919 | |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
920 A marker representing the point when this command is onvoked is pushed |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
921 onto a ring and may be popped back to with \\[pop-tag-mark]. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
922 Contrast this with the ring of marks gone to by the command. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
923 |
799 | 924 See documentation of variable `tags-file-name'." |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
925 (interactive (find-tag-interactive "Find tag regexp: " t)) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
926 ;; We go through find-tag-other-window to do all the display hair there. |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
927 (funcall (if other-window 'find-tag-other-window 'find-tag) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
928 regexp next-p t)) |
8187
9120cee6bfab
(find-tag-regexp): Bind to C-M-..
Richard M. Stallman <rms@gnu.org>
parents:
8116
diff
changeset
|
929 ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
930 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
931 ;;;###autoload (define-key esc-map "*" 'pop-tag-mark) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
932 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
933 ;;;###autoload |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
934 (defun pop-tag-mark () |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
935 "Pop back to where \\[find-tag] was last invoked. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
936 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
937 This is distinct from invoking \\[find-tag] with a negative argument |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
938 since that pops a stack of markers at which tags were found, not from |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
939 where they were found." |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
940 (interactive) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
941 (if (ring-empty-p find-tag-marker-ring) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
942 (error "No previous locations for find-tag invocation")) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
943 (let ((marker (ring-remove find-tag-marker-ring 0))) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
944 (switch-to-buffer (or (marker-buffer marker) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
945 (error "The marked buffer has been deleted"))) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
946 (goto-char (marker-position marker)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
947 (set-marker marker nil nil))) |
799 | 948 |
949 ;; Internal tag finding function. | |
950 | |
951 ;; PATTERN is a string to pass to second arg SEARCH-FORWARD-FUNC, and to | |
952 ;; any member of the function list ORDER (third arg). If ORDER is nil, | |
953 ;; use saved state to continue a previous search. | |
954 | |
955 ;; Fourth arg MATCHING is a string, an English '-ing' word, to be used in | |
956 ;; an error message. | |
957 | |
958 ;; Fifth arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match, | |
959 ;; point should be moved to the next line. | |
960 | |
961 ;; Algorithm is as follows. For each qualifier-func in ORDER, go to | |
962 ;; beginning of tags file, and perform inner loop: for each naive match for | |
963 ;; PATTERN found using SEARCH-FORWARD-FUNC, qualify the naive match using | |
964 ;; qualifier-func. If it qualifies, go to the specified line in the | |
965 ;; specified source file and return. Qualified matches are remembered to | |
966 ;; avoid repetition. State is saved so that the loop can be continued. | |
967 | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
968 (defvar tag-lines-already-matched nil) ;matches remembered here between calls |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
969 |
1555
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
970 (defun find-tag-in-order (pattern |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
971 search-forward-func |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
972 order |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
973 next-line-after-failure-p |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
974 matching |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
975 first-search) |
799 | 976 (let (file ;name of file containing tag |
977 tag-info ;where to find the tag in FILE | |
978 (first-table t) | |
979 (tag-order order) | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
980 (match-marker (make-marker)) |
799 | 981 goto-func |
982 ) | |
983 (save-excursion | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
984 |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
985 (if first-search |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
986 ;; This is the start of a search for a fresh tag. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
987 ;; Clear the list of tags matched by the previous search. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
988 ;; find-tag-noselect has already put us in the first tags table |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
989 ;; buffer before we got called. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
990 (setq tag-lines-already-matched nil) |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
991 ;; Continuing to search for the tag specified last time. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
992 ;; tag-lines-already-matched lists locations matched in previous |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
993 ;; calls so we don't visit the same tag twice if it matches twice |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
994 ;; during two passes with different qualification predicates. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
995 ;; Switch to the current tags table buffer. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
996 (visit-tags-table-buffer 'same)) |
1149 | 997 |
799 | 998 ;; Get a qualified match. |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
999 (catch 'qualified-match-found |
1149 | 1000 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1001 ;; Iterate over the list of tags tables. |
799 | 1002 (while (or first-table |
1003 (visit-tags-table-buffer t)) | |
1004 | |
884 | 1005 (and first-search first-table |
1006 ;; Start at beginning of tags file. | |
1007 (goto-char (point-min))) | |
10661
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
1008 |
884 | 1009 (setq first-table nil) |
799 | 1010 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1011 ;; Iterate over the list of ordering predicates. |
799 | 1012 (while order |
1013 (while (funcall search-forward-func pattern nil t) | |
1014 ;; Naive match found. Qualify the match. | |
1015 (and (funcall (car order) pattern) | |
1016 ;; Make sure it is not a previous qualified match. | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1017 (not (member (set-marker match-marker (save-excursion |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1018 (beginning-of-line) |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1019 (point))) |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1020 tag-lines-already-matched)) |
799 | 1021 (throw 'qualified-match-found nil)) |
1022 (if next-line-after-failure-p | |
1023 (forward-line 1))) | |
1024 ;; Try the next flavor of match. | |
1025 (setq order (cdr order)) | |
1026 (goto-char (point-min))) | |
1027 (setq order tag-order)) | |
1028 ;; We throw out on match, so only get here if there were no matches. | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1029 ;; Clear out the markers we use to avoid duplicate matches so they |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1030 ;; don't slow down editting and are immediately available for GC. |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1031 (while tag-lines-already-matched |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1032 (set-marker (car tag-lines-already-matched) nil nil) |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1033 (setq tag-lines-already-matched (cdr tag-lines-already-matched))) |
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1034 (set-marker match-marker nil nil) |
799 | 1035 (error "No %stags %s %s" (if first-search "" "more ") |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1036 matching pattern)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1037 |
799 | 1038 ;; Found a tag; extract location info. |
1039 (beginning-of-line) | |
15352
e648211d5bac
Fri Jun 7 13:06:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
14420
diff
changeset
|
1040 (setq tag-lines-already-matched (cons match-marker |
799 | 1041 tag-lines-already-matched)) |
1042 ;; Expand the filename, using the tags table buffer's default-directory. | |
1043 (setq file (expand-file-name (file-of-tag)) | |
1044 tag-info (funcall snarf-tag-function)) | |
1045 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1046 ;; Get the local value in the tags table buffer before switching buffers. |
799 | 1047 (setq goto-func goto-tag-location-function) |
1048 | |
1049 ;; Find the right line in the specified file. | |
1050 (set-buffer (find-file-noselect file)) | |
1051 (widen) | |
1052 (push-mark) | |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1053 (funcall goto-func tag-info) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1054 |
799 | 1055 ;; Return the buffer where the tag was found. |
1056 (current-buffer)))) | |
1057 | |
1058 ;; `etags' TAGS file format support. | |
1059 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1060 ;; If the current buffer is a valid etags TAGS file, give it local values of |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1061 ;; the tags table format variables, and return non-nil. |
799 | 1062 (defun etags-recognize-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1063 (and (etags-verify-tags-table) |
1136 | 1064 ;; It is annoying to flash messages on the screen briefly, |
1065 ;; and this message is not useful. -- rms | |
1066 ;; (message "%s is an `etags' TAGS file" buffer-file-name) | |
799 | 1067 (mapcar (function (lambda (elt) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1068 (set (make-local-variable (car elt)) (cdr elt)))) |
799 | 1069 '((file-of-tag-function . etags-file-of-tag) |
1070 (tags-table-files-function . etags-tags-table-files) | |
1071 (tags-completion-table-function . etags-tags-completion-table) | |
1072 (snarf-tag-function . etags-snarf-tag) | |
1073 (goto-tag-location-function . etags-goto-tag-location) | |
1074 (find-tag-regexp-search-function . re-search-forward) | |
1075 (find-tag-regexp-tag-order . (tag-re-match-p)) | |
3548
54b82ecde27b
(etags-recognize-tags-table): Fix misspelling of
Richard M. Stallman <rms@gnu.org>
parents:
2768
diff
changeset
|
1076 (find-tag-regexp-next-line-after-failure-p . t) |
799 | 1077 (find-tag-search-function . search-forward) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1078 (find-tag-tag-order . (tag-exact-file-name-match-p |
10661
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
1079 tag-exact-match-p |
9021
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1080 tag-symbol-match-p |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1081 tag-word-match-p |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1082 tag-any-match-p)) |
799 | 1083 (find-tag-next-line-after-failure-p . nil) |
1084 (list-tags-function . etags-list-tags) | |
1085 (tags-apropos-function . etags-tags-apropos) | |
1086 (tags-included-tables-function . etags-tags-included-tables) | |
1087 (verify-tags-table-function . etags-verify-tags-table) | |
1088 )))) | |
1089 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1090 ;; Return non-nil iff the current buffer is a valid etags TAGS file. |
799 | 1091 (defun etags-verify-tags-table () |
1723
4023bea27d64
(etags-verify-tags-table): Use eq instead of = in case char-after returns
Roland McGrath <roland@gnu.org>
parents:
1697
diff
changeset
|
1092 ;; Use eq instead of = in case char-after returns nil. |
4023bea27d64
(etags-verify-tags-table): Use eq instead of = in case char-after returns
Roland McGrath <roland@gnu.org>
parents:
1697
diff
changeset
|
1093 (eq (char-after 1) ?\f)) |
799 | 1094 |
1095 (defun etags-file-of-tag () | |
1096 (save-excursion | |
16367
168e1370e887
(etags-file-of-tag): Fix looking-at regexp.
Richard M. Stallman <rms@gnu.org>
parents:
16281
diff
changeset
|
1097 (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n") |
16625
b24b7ef8573b
(etags-file-of-tag): Expand the file name
Richard M. Stallman <rms@gnu.org>
parents:
16367
diff
changeset
|
1098 (expand-file-name (buffer-substring (match-beginning 1) (match-end 1)) |
b24b7ef8573b
(etags-file-of-tag): Expand the file name
Richard M. Stallman <rms@gnu.org>
parents:
16367
diff
changeset
|
1099 (file-truename default-directory)))) |
799 | 1100 |
10680
69cbb0d5671d
(etags-file-of-tag): Handle file name used as tag.
Richard M. Stallman <rms@gnu.org>
parents:
10661
diff
changeset
|
1101 |
799 | 1102 (defun etags-tags-completion-table () |
1103 (let ((table (make-vector 511 0))) | |
1104 (save-excursion | |
1105 (goto-char (point-min)) | |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1106 ;; This monster regexp matches an etags tag line. |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1107 ;; \1 is the string to match; |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1108 ;; \2 is not interesting; |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1109 ;; \3 is the guessed tag name; XXX guess should be better eg DEFUN |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1110 ;; \4 is not interesting; |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1111 ;; \5 is the explicitly-specified tag name. |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1112 ;; \6 is the line to start searching at; |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1113 ;; \7 is the char to start searching at. |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1114 (while (re-search-forward |
10429
c37ee605ba79
(etags-tags-completion-table): Don't let match string contain a \177.
Roland McGrath <roland@gnu.org>
parents:
10402
diff
changeset
|
1115 "^\\(\\([^\177]+[^-a-zA-Z0-9_$\177]+\\)?\\([-a-zA-Z0-9_$?:]+\\)\ |
c37ee605ba79
(etags-tags-completion-table): Don't let match string contain a \177.
Roland McGrath <roland@gnu.org>
parents:
10402
diff
changeset
|
1116 \[^-a-zA-Z0-9_$?:\177]*\\)\177\\(\\([^\n\001]+\\)\001\\)?\ |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1117 \\([0-9]+\\)?,\\([0-9]+\\)?\n" |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1118 nil t) |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1119 (intern (if (match-beginning 5) |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1120 ;; There is an explicit tag name. |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1121 (buffer-substring (match-beginning 5) (match-end 5)) |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1122 ;; No explicit tag name. Best guess. |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1123 (buffer-substring (match-beginning 3) (match-end 3))) |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1124 table))) |
799 | 1125 table)) |
1126 | |
1127 (defun etags-snarf-tag () | |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1128 (let (tag-text line startpos) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1129 (if (save-excursion |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1130 (forward-line -1) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1131 (looking-at "\f\n")) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1132 ;; The match was for a source file name, not any tag within a file. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1133 ;; Give text of t, meaning to go exactly to the location we specify, |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1134 ;; the beginning of the file. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1135 (setq tag-text t |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1136 line nil |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1137 startpos 1) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1138 |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1139 ;; Find the end of the tag and record the whole tag text. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1140 (search-forward "\177") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1141 (setq tag-text (buffer-substring (1- (point)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1142 (save-excursion (beginning-of-line) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1143 (point)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1144 ;; Skip explicit tag name if present. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1145 (search-forward "\001" (save-excursion (forward-line 1) (point)) t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1146 (if (looking-at "[0-9]") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1147 (setq line (string-to-int (buffer-substring |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1148 (point) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1149 (progn (skip-chars-forward "0-9") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1150 (point)))))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1151 (search-forward ",") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1152 (if (looking-at "[0-9]") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1153 (setq startpos (string-to-int (buffer-substring |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1154 (point) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1155 (progn (skip-chars-forward "0-9") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1156 (point))))))) |
799 | 1157 ;; Leave point on the next line of the tags file. |
1158 (forward-line 1) | |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1159 (cons tag-text (cons line startpos)))) |
799 | 1160 |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1161 ;; TAG-INFO is a cons (TEXT LINE . POSITION) where TEXT is the initial part |
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1162 ;; of a line containing the tag and POSITION is the character position of |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1163 ;; TEXT within the file (starting from 1); LINE is the line number. If |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1164 ;; TEXT is t, it means the tag refers to exactly LINE or POSITION |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1165 ;; (whichever is present, LINE having preference, no searching. Either |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1166 ;; LINE or POSITION may be nil; POSITION is used if present. If the tag |
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1167 ;; isn't exactly at the given position then look around that position using |
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1168 ;; a search window which expands until it hits the start of file. |
799 | 1169 (defun etags-goto-tag-location (tag-info) |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1170 (let ((startpos (cdr (cdr tag-info))) |
15770
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1171 (line (car (cdr tag-info))) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1172 offset found pat) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1173 (if (eq (car tag-info) t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1174 ;; Direct file tag. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1175 (cond (line (goto-line line)) |
15770
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1176 (startpos (goto-char startpos)) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1177 (t (error "etags.el BUG: bogus direct file tag"))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1178 ;; This constant is 1/2 the initial search window. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1179 ;; There is no sense in making it too small, |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1180 ;; since just going around the loop once probably |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1181 ;; costs about as much as searching 2000 chars. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1182 (setq offset 1000 |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1183 found nil |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1184 pat (concat (if (eq selective-display t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1185 "\\(^\\|\^m\\)" "^") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1186 (regexp-quote (car tag-info)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1187 ;; The character position in the tags table is 0-origin. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1188 ;; Convert it to a 1-origin Emacs character position. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1189 (if startpos (setq startpos (1+ startpos))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1190 ;; If no char pos was given, try the given line number. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1191 (or startpos |
15770
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1192 (if line |
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1193 (setq startpos (progn (goto-line line) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1194 (point))))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1195 (or startpos |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1196 (setq startpos (point-min))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1197 ;; First see if the tag is right at the specified location. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1198 (goto-char startpos) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1199 (setq found (looking-at pat)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1200 (while (and (not found) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1201 (progn |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1202 (goto-char (- startpos offset)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1203 (not (bobp)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1204 (setq found |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1205 (re-search-forward pat (+ startpos offset) t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1206 offset (* 3 offset))) ; expand search window |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1207 (or found |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1208 (re-search-forward pat nil t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1209 (error "Rerun etags: `%s' not found in %s" |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1210 pat buffer-file-name))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1211 ;; Position point at the right place |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1212 ;; if the search string matched an extra Ctrl-m at the beginning. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1213 (and (eq selective-display t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1214 (looking-at "\^m") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1215 (forward-char 1)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1216 (beginning-of-line))) |
799 | 1217 |
1218 (defun etags-list-tags (file) | |
1219 (goto-char 1) | |
1220 (if (not (search-forward (concat "\f\n" file ",") nil t)) | |
1221 nil | |
1222 (forward-line 1) | |
1223 (while (not (or (eobp) (looking-at "\f"))) | |
6245
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1224 (let ((tag (buffer-substring (point) |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1225 (progn (skip-chars-forward "^\177") |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1226 (point))))) |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1227 (princ (if (looking-at "[^\n]+\001") |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1228 ;; There is an explicit tag name; use that. |
15360
6243be11f0e3
(etags-list-tags): When there is an explicit tag name, skip the \177 before
Roland McGrath <roland@gnu.org>
parents:
15352
diff
changeset
|
1229 (buffer-substring (1+ (point)) ;skip \177 |
6245
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1230 (progn (skip-chars-forward "^\001") |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1231 (point))) |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1232 tag))) |
799 | 1233 (terpri) |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1234 (forward-line 1)) |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1235 t)) |
799 | 1236 |
1237 (defun etags-tags-apropos (string) | |
1238 (goto-char 1) | |
1239 (while (re-search-forward string nil t) | |
1240 (beginning-of-line) | |
1241 (princ (buffer-substring (point) | |
1242 (progn (skip-chars-forward "^\177") | |
1243 (point)))) | |
1244 (terpri) | |
1245 (forward-line 1))) | |
1246 | |
1247 (defun etags-tags-table-files () | |
1248 (let ((files nil) | |
1249 beg) | |
1250 (goto-char (point-min)) | |
1251 (while (search-forward "\f\n" nil t) | |
1252 (setq beg (point)) | |
9579
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1253 (end-of-line) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1254 (skip-chars-backward "^," beg) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1255 (or (looking-at "include$") |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1256 (setq files (cons (buffer-substring beg (1- (point))) files)))) |
799 | 1257 (nreverse files))) |
1258 | |
1259 (defun etags-tags-included-tables () | |
1260 (let ((files nil) | |
1261 beg) | |
1262 (goto-char (point-min)) | |
1263 (while (search-forward "\f\n" nil t) | |
1264 (setq beg (point)) | |
9579
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1265 (end-of-line) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1266 (skip-chars-backward "^," beg) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1267 (if (looking-at "include$") |
799 | 1268 ;; Expand in the default-directory of the tags table buffer. |
9579
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1269 (setq files (cons (expand-file-name (buffer-substring beg (1- (point)))) |
799 | 1270 files)))) |
1271 (nreverse files))) | |
1272 | |
1273 ;; Empty tags file support. | |
1274 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1275 ;; Recognize an empty file and give it local values of the tags table format |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1276 ;; variables which do nothing. |
799 | 1277 (defun recognize-empty-tags-table () |
1278 (and (zerop (buffer-size)) | |
1279 (mapcar (function (lambda (sym) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1280 (set (make-local-variable sym) 'ignore))) |
799 | 1281 '(tags-table-files-function |
1282 tags-completion-table-function | |
1283 find-tag-regexp-search-function | |
1284 find-tag-search-function | |
1285 tags-apropos-function | |
1286 tags-included-tables-function)) | |
1287 (set (make-local-variable 'verify-tags-table-function) | |
1288 (function (lambda () | |
1289 (zerop (buffer-size))))))) | |
1290 | |
1291 ;;; Match qualifier functions for tagnames. | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1292 ;;; XXX these functions assume etags file format. |
799 | 1293 |
884 | 1294 ;; This might be a neat idea, but it's too hairy at the moment. |
1295 ;;(defmacro tags-with-syntax (&rest body) | |
1296 ;; (` (let ((current (current-buffer)) | |
1297 ;; (otable (syntax-table)) | |
1298 ;; (buffer (find-file-noselect (file-of-tag))) | |
1299 ;; table) | |
1300 ;; (unwind-protect | |
1301 ;; (progn | |
1302 ;; (set-buffer buffer) | |
1303 ;; (setq table (syntax-table)) | |
1304 ;; (set-buffer current) | |
1305 ;; (set-syntax-table table) | |
1306 ;; (,@ body)) | |
1307 ;; (set-syntax-table otable))))) | |
1308 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form)) | |
877 | 1309 |
9021
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1310 ;; t if point is at a tag line that matches TAG exactly. |
799 | 1311 ;; point should be just after a string that matches TAG. |
884 | 1312 (defun tag-exact-match-p (tag) |
4666
674082454a0c
(tag-exact-match-p): Return true if TAG is the explicit tag name.
Roland McGrath <roland@gnu.org>
parents:
4661
diff
changeset
|
1313 ;; The match is really exact if there is an explicit tag name. |
8081
6099d3d43685
(tag-exact-match-p): Test for point sitting after the explicit tag name
Roland McGrath <roland@gnu.org>
parents:
8040
diff
changeset
|
1314 (or (and (eq (char-after (point)) ?\001) |
8082
215cfbab6d72
(tag-exact-match-p): Fix typo in last change.
Roland McGrath <roland@gnu.org>
parents:
8081
diff
changeset
|
1315 (eq (char-after (- (point) (length tag) 1)) ?\177)) |
8081
6099d3d43685
(tag-exact-match-p): Test for point sitting after the explicit tag name
Roland McGrath <roland@gnu.org>
parents:
8040
diff
changeset
|
1316 ;; We are not on the explicit tag name, but perhaps it follows. |
9021
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1317 (looking-at (concat "[^\177\n]*\177" (regexp-quote tag) "\001")))) |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1318 |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1319 ;; t if point is at a tag line that matches TAG as a symbol. |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1320 ;; point should be just after a string that matches TAG. |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1321 (defun tag-symbol-match-p (tag) |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1322 (and (looking-at "\\Sw.*\177") (looking-at "\\S_.*\177") |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1323 (save-excursion |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1324 (backward-char (1+ (length tag))) |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1325 (and (looking-at "\\Sw") (looking-at "\\S_"))))) |
799 | 1326 |
1327 ;; t if point is at a tag line that matches TAG as a word. | |
1328 ;; point should be just after a string that matches TAG. | |
1329 (defun tag-word-match-p (tag) | |
1330 (and (looking-at "\\b.*\177") | |
15770
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1331 (save-excursion (backward-char (length tag)) |
799 | 1332 (looking-at "\\b")))) |
1333 | |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1334 (defun tag-exact-file-name-match-p (tag) |
10661
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
1335 (and (looking-at ",") |
15775
2f589e0f2c7a
(tag-exact-file-name-match-p): Fix previous change.
Erik Naggum <erik@naggum.no>
parents:
15770
diff
changeset
|
1336 (save-excursion (backward-char (length tag)) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1337 (looking-at "\f\n")))) |
10661
32beb7b6dbf7
Changes to support filenames as tags too and provided
Richard M. Stallman <rms@gnu.org>
parents:
10458
diff
changeset
|
1338 |
799 | 1339 ;; t if point is in a tag line with a tag containing TAG as a substring. |
1340 (defun tag-any-match-p (tag) | |
1341 (looking-at ".*\177")) | |
1342 | |
1343 ;; t if point is at a tag line that matches RE as a regexp. | |
1344 (defun tag-re-match-p (re) | |
1345 (save-excursion | |
1346 (beginning-of-line) | |
1347 (let ((bol (point))) | |
1348 (and (search-forward "\177" (save-excursion (end-of-line) (point)) t) | |
1349 (re-search-backward re bol t))))) | |
1350 | |
1351 ;;;###autoload | |
1352 (defun next-file (&optional initialize novisit) | |
1353 "Select next file among files in current tags table. | |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1354 |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1355 A first argument of t (prefix arg, if interactive) initializes to the |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1356 beginning of the list of files in the tags table. If the argument is |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1357 neither nil nor t, it is evalled to initialize the list of files. |
799 | 1358 |
1359 Non-nil second argument NOVISIT means use a temporary buffer | |
1360 to save time and avoid uninteresting warnings. | |
1361 | |
1362 Value is nil if the file was already visited; | |
1363 if the file was newly read in, the value is the filename." | |
13576
38c6a718abb8
(next-file): Make interactive arg t if had any prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
13341
diff
changeset
|
1364 ;; Make the interactive arg t if there was any prefix arg. |
38c6a718abb8
(next-file): Make interactive arg t if had any prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
13341
diff
changeset
|
1365 (interactive (list (if current-prefix-arg t))) |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1366 (cond ((not initialize) |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1367 ;; Not the first run. |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1368 ) |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1369 ((eq initialize t) |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1370 ;; Initialize the list from the tags table. |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1371 (save-excursion |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1372 ;; Visit the tags table buffer to get its list of files. |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1373 (visit-tags-table-buffer) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1374 ;; Copy the list so we can setcdr below, and expand the file |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1375 ;; names while we are at it, in this buffer's default directory. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1376 (setq next-file-list (mapcar 'expand-file-name (tags-table-files))) |
9631
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1377 ;; Iterate over all the tags table files, collecting |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1378 ;; a complete list of referenced file names. |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1379 (while (visit-tags-table-buffer t) |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1380 ;; Find the tail of the working list and chain on the new |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1381 ;; sublist for this tags table. |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1382 (let ((tail next-file-list)) |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1383 (while (cdr tail) |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1384 (setq tail (cdr tail))) |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1385 ;; Use a copy so the next loop iteration will not modify the |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1386 ;; list later returned by (tags-table-files). |
11316
72f527d22fe1
(next-file): Handle empty list returned by (tags-table-files).
Roland McGrath <roland@gnu.org>
parents:
10680
diff
changeset
|
1387 (if tail |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1388 (setcdr tail (mapcar 'expand-file-name (tags-table-files))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1389 (setq next-file-list (mapcar 'expand-file-name |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1390 (tags-table-files)))))))) |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1391 (t |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1392 ;; Initialize the list by evalling the argument. |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1393 (setq next-file-list (eval initialize)))) |
9631
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1394 (if next-file-list |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1395 () |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1396 (and novisit |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1397 (get-buffer " *next-file*") |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1398 (kill-buffer " *next-file*")) |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1399 (error "All files processed")) |
12942
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1400 (let* ((next (car next-file-list)) |
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1401 (new (not (get-file-buffer next)))) |
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1402 ;; Advance the list before trying to find the file. |
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1403 ;; If we get an error finding the file, don't get stuck on it. |
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1404 (setq next-file-list (cdr next-file-list)) |
799 | 1405 (if (not (and new novisit)) |
12942
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1406 (set-buffer (find-file-noselect next novisit)) |
799 | 1407 ;; Like find-file, but avoids random warning messages. |
1408 (set-buffer (get-buffer-create " *next-file*")) | |
1409 (kill-all-local-variables) | |
1410 (erase-buffer) | |
12942
3685b0e52d2a
(next-file): Advance next-file-list before finding the file named in its
Roland McGrath <roland@gnu.org>
parents:
11792
diff
changeset
|
1411 (setq new next) |
799 | 1412 (insert-file-contents new nil)) |
1413 new)) | |
342 | 1414 |
799 | 1415 (defvar tags-loop-operate nil |
1416 "Form for `tags-loop-continue' to eval to change one file.") | |
1417 | |
1808
60685747963c
(tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents:
1807
diff
changeset
|
1418 (defvar tags-loop-scan |
14420
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1419 '(error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1420 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1421 "No \\[tags-search] or \\[tags-query-replace] in progress")) |
799 | 1422 "Form for `tags-loop-continue' to eval to scan one file. |
1423 If it returns non-nil, this file needs processing by evalling | |
1424 \`tags-loop-operate'. Otherwise, move on to the next file.") | |
342 | 1425 |
360 | 1426 ;;;###autoload |
342 | 1427 (defun tags-loop-continue (&optional first-time) |
1428 "Continue last \\[tags-search] or \\[tags-query-replace] command. | |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1429 Used noninteractively with non-nil argument to begin such a command (the |
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1430 argument is passed to `next-file', which see). |
11792
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1431 |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1432 Two variables control the processing we do on each file: the value of |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1433 `tags-loop-scan' is a form to be executed on each file to see if it is |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1434 interesting (it returns non-nil if so) and `tags-loop-operate' is a form to |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1435 evaluate to operate on an interesting file. If the latter evaluates to |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1436 nil, we exit; otherwise we scan the next file." |
342 | 1437 (interactive) |
799 | 1438 (let (new |
1439 (messaged nil)) | |
1440 (while | |
1441 (progn | |
1442 ;; Scan files quickly for the first or next interesting one. | |
1443 (while (or first-time | |
1444 (save-restriction | |
1445 (widen) | |
1446 (not (eval tags-loop-scan)))) | |
1447 (setq new (next-file first-time t)) | |
1448 ;; If NEW is non-nil, we got a temp buffer, | |
1449 ;; and NEW is the file name. | |
1450 (if (or messaged | |
1451 (and (not first-time) | |
1452 (> baud-rate search-slow-speed) | |
1453 (setq messaged t))) | |
1454 (message "Scanning file %s..." (or new buffer-file-name))) | |
1455 (setq first-time nil) | |
1456 (goto-char (point-min))) | |
1457 | |
1458 ;; If we visited it in a temp buffer, visit it now for real. | |
1459 (if new | |
1460 (let ((pos (point))) | |
1461 (erase-buffer) | |
1462 (set-buffer (find-file-noselect new)) | |
11792
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1463 (setq new nil) ;No longer in a temp buffer. |
799 | 1464 (widen) |
1465 (goto-char pos))) | |
1466 | |
1467 (switch-to-buffer (current-buffer)) | |
1468 | |
1469 ;; Now operate on the file. | |
1470 ;; If value is non-nil, continue to scan the next file. | |
1471 (eval tags-loop-operate))) | |
1472 (and messaged | |
1473 (null tags-loop-operate) | |
1474 (message "Scanning file %s...found" buffer-file-name)))) | |
1475 ;;;###autoload (define-key esc-map "," 'tags-loop-continue) | |
342 | 1476 |
360 | 1477 ;;;###autoload |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1478 (defun tags-search (regexp &optional file-list-form) |
799 | 1479 "Search through all files listed in tags table for match for REGEXP. |
342 | 1480 Stops when a match is found. |
1481 To continue searching for next match, use command \\[tags-loop-continue]. | |
1482 | |
799 | 1483 See documentation of variable `tags-file-name'." |
342 | 1484 (interactive "sTags search (regexp): ") |
1485 (if (and (equal regexp "") | |
799 | 1486 (eq (car tags-loop-scan) 're-search-forward) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1487 (null tags-loop-operate)) |
799 | 1488 ;; Continue last tags-search as if by M-,. |
342 | 1489 (tags-loop-continue nil) |
799 | 1490 (setq tags-loop-scan |
11482
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1491 (list 're-search-forward (list 'quote regexp) nil t) |
799 | 1492 tags-loop-operate nil) |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1493 (tags-loop-continue (or file-list-form t)))) |
342 | 1494 |
360 | 1495 ;;;###autoload |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1496 (defun tags-query-replace (from to &optional delimited file-list-form) |
799 | 1497 "Query-replace-regexp FROM with TO through all files listed in tags table. |
342 | 1498 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
799 | 1499 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace |
342 | 1500 with the command \\[tags-loop-continue]. |
1501 | |
799 | 1502 See documentation of variable `tags-file-name'." |
9941
6d82f17895cf
(tags-query-replace): Use query-replace-read-args in interactive spec.
Roland McGrath <roland@gnu.org>
parents:
9928
diff
changeset
|
1503 (interactive (query-replace-read-args "Tags query replace (regexp)" t)) |
804 | 1504 (setq tags-loop-scan (list 'prog1 |
11482
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1505 (list 'if (list 're-search-forward |
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1506 (list 'quote from) nil t) |
804 | 1507 ;; When we find a match, move back |
1508 ;; to the beginning of it so perform-replace | |
1509 ;; will see it. | |
1510 '(goto-char (match-beginning 0)))) | |
11482
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1511 tags-loop-operate (list 'perform-replace |
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1512 (list 'quote from) (list 'quote to) |
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1513 t t (list 'quote delimited))) |
4661
8ca17ed2aeb8
(next-file): If arg is neither t nor nil, then eval it to return initial
Roland McGrath <roland@gnu.org>
parents:
4486
diff
changeset
|
1514 (tags-loop-continue (or file-list-form t))) |
799 | 1515 |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1516 (defun tags-complete-tags-table-file (string predicate what) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1517 (save-excursion |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1518 ;; If we need to ask for the tag table, allow that. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1519 (let ((enable-recursive-minibuffers t)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1520 (visit-tags-table-buffer)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1521 (if (eq what t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1522 (all-completions string (mapcar 'list (tags-table-files)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1523 predicate) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1524 (try-completion string (mapcar 'list (tags-table-files)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1525 predicate)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1526 |
799 | 1527 ;;;###autoload |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1528 (defun list-tags (file &optional next-match) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1529 "Display list of tags in file FILE. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1530 This searches only the first table in the list, and no included tables. |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1531 FILE should be as it appeared in the `etags' command, usually without a |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1532 directory specification." |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1533 (interactive (list (completing-read "List tags in file: " |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1534 'tags-complete-tags-table-file |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1535 nil t nil))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1536 (with-output-to-temp-buffer "*Tags List*" |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1537 (princ "Tags in file ") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1538 (princ file) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1539 (terpri) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1540 (save-excursion |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1541 (let ((first-time t) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1542 (gotany nil)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1543 (while (visit-tags-table-buffer (not first-time)) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1544 (setq first-time nil) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1545 (if (funcall list-tags-function file) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1546 (setq gotany t))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1547 (or gotany |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1548 (error "File %s not in current tags tables" file)))))) |
342 | 1549 |
360 | 1550 ;;;###autoload |
799 | 1551 (defun tags-apropos (regexp) |
1552 "Display list of all tags in tags table REGEXP matches." | |
1553 (interactive "sTags apropos (regexp): ") | |
342 | 1554 (with-output-to-temp-buffer "*Tags List*" |
799 | 1555 (princ "Tags matching regexp ") |
1556 (prin1 regexp) | |
342 | 1557 (terpri) |
1558 (save-excursion | |
1149 | 1559 (let ((first-time t)) |
1560 (while (visit-tags-table-buffer (not first-time)) | |
1561 (setq first-time nil) | |
1151 | 1562 (funcall tags-apropos-function regexp)))))) |
799 | 1563 |
1564 ;;; XXX Kludge interface. | |
342 | 1565 |
799 | 1566 ;; XXX If a file is in multiple tables, selection may get the wrong one. |
804 | 1567 ;;;###autoload |
799 | 1568 (defun select-tags-table () |
1569 "Select a tags table file from a menu of those you have already used. | |
8456
2ca3b54b45b1
(select-tags-table): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8297
diff
changeset
|
1570 The list of tags tables to select from is stored in `tags-table-set-list'; |
799 | 1571 see the doc of that variable if you want to add names to the list." |
1572 (interactive) | |
1573 (pop-to-buffer "*Tags Table List*") | |
1574 (setq buffer-read-only nil) | |
1575 (erase-buffer) | |
1576 (let ((set-list tags-table-set-list) | |
1577 (desired-point nil)) | |
1578 (if tags-table-list | |
1579 (progn | |
1580 (setq desired-point (point-marker)) | |
1581 (princ tags-table-list (current-buffer)) | |
1582 (insert "\C-m") | |
1583 (prin1 (car tags-table-list) (current-buffer)) ;invisible | |
1584 (insert "\n"))) | |
1585 (while set-list | |
1586 (if (eq (car set-list) tags-table-list) | |
1587 ;; Already printed it. | |
1588 () | |
1589 (princ (car set-list) (current-buffer)) | |
1590 (insert "\C-m") | |
1591 (prin1 (car (car set-list)) (current-buffer)) ;invisible | |
1592 (insert "\n")) | |
1593 (setq set-list (cdr set-list))) | |
1594 (if tags-file-name | |
1595 (progn | |
1596 (or desired-point | |
1597 (setq desired-point (point-marker))) | |
1598 (insert tags-file-name "\C-m") | |
1599 (prin1 tags-file-name (current-buffer)) ;invisible | |
1600 (insert "\n"))) | |
1601 (setq set-list (delete tags-file-name | |
13341
c26492df6218
(select-tags-table): Don't modify the value of tags-table-list.
Richard M. Stallman <rms@gnu.org>
parents:
13165
diff
changeset
|
1602 (apply 'nconc (cons (copy-sequence tags-table-list) |
799 | 1603 (mapcar 'copy-sequence |
1604 tags-table-set-list))))) | |
1605 (while set-list | |
1606 (insert (car set-list) "\C-m") | |
1607 (prin1 (car set-list) (current-buffer)) ;invisible | |
1608 (insert "\n") | |
1609 (setq set-list (delete (car set-list) set-list))) | |
1610 (goto-char 1) | |
1611 (insert-before-markers | |
1612 "Type `t' to select a tags table or set of tags tables:\n\n") | |
1613 (if desired-point | |
1614 (goto-char desired-point)) | |
1615 (set-window-start (selected-window) 1 t)) | |
1616 (set-buffer-modified-p nil) | |
7645
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1617 (select-tags-table-mode)) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1618 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1619 (defvar select-tags-table-mode-map) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1620 (let ((map (make-sparse-keymap))) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1621 (define-key map "t" 'select-tags-table-select) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1622 (define-key map " " 'next-line) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1623 (define-key map "\^?" 'previous-line) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1624 (define-key map "n" 'next-line) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1625 (define-key map "p" 'previous-line) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1626 (define-key map "q" 'select-tags-table-quit) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1627 (setq select-tags-table-mode-map map)) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1628 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1629 (defun select-tags-table-mode () |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1630 "Major mode for choosing a current tags table among those already loaded. |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1631 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1632 \\{select-tags-table-mode-map}" |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1633 (interactive) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1634 (kill-all-local-variables) |
799 | 1635 (setq buffer-read-only t |
7645
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1636 major-mode 'select-tags-table-mode |
799 | 1637 mode-name "Select Tags Table") |
7645
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1638 (use-local-map select-tags-table-mode-map) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1639 (setq selective-display t |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1640 selective-display-ellipses nil)) |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1641 |
799 | 1642 (defun select-tags-table-select () |
1643 "Select the tags table named on this line." | |
1644 (interactive) | |
1645 (search-forward "\C-m") | |
1646 (let ((name (read (current-buffer)))) | |
1647 (visit-tags-table name) | |
1648 (select-tags-table-quit) | |
1649 (message "Tags table now %s" name))) | |
1650 | |
1651 (defun select-tags-table-quit () | |
1652 "Kill the buffer and delete the selected window." | |
1653 (interactive) | |
21097
eb3dc7ea93c2
(select-tags-table-quit): Use quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
20836
diff
changeset
|
1654 (quit-window t (selected-window))) |
799 | 1655 |
16281 | 1656 ;;; Note, there is another definition of this function in bindings.el. |
360 | 1657 ;;;###autoload |
799 | 1658 (defun complete-tag () |
1659 "Perform tags completion on the text around point. | |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1660 Completes to the set of names listed in the current tags table. |
799 | 1661 The string to complete is chosen in the same way as the default |
981 | 1662 for \\[find-tag] (which see)." |
799 | 1663 (interactive) |
981 | 1664 (or tags-table-list |
1665 tags-file-name | |
14420
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1666 (error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1667 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1668 "No tags table loaded; try \\[visit-tags-table]"))) |
799 | 1669 (let ((pattern (funcall (or find-tag-default-function |
1670 (get major-mode 'find-tag-default-function) | |
1671 'find-tag-default))) | |
1672 beg | |
1673 completion) | |
1674 (or pattern | |
1675 (error "Nothing to complete")) | |
1676 (search-backward pattern) | |
1677 (setq beg (point)) | |
1678 (forward-char (length pattern)) | |
1679 (setq completion (try-completion pattern 'tags-complete-tag nil)) | |
1680 (cond ((eq completion t)) | |
1681 ((null completion) | |
1682 (message "Can't find completion for \"%s\"" pattern) | |
1683 (ding)) | |
1684 ((not (string= pattern completion)) | |
1685 (delete-region beg (point)) | |
1686 (insert completion)) | |
1687 (t | |
1688 (message "Making completion list...") | |
7843
38d89820ab47
(complete-tag): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7645
diff
changeset
|
1689 (with-output-to-temp-buffer "*Completions*" |
799 | 1690 (display-completion-list |
1691 (all-completions pattern 'tags-complete-tag nil))) | |
1692 (message "Making completion list...%s" "done"))))) | |
1693 | |
584 | 1694 (provide 'etags) |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1695 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1696 ;;; etags.el ends here |