Mercurial > emacs
annotate lisp/progmodes/etags.el @ 29483:d12a2182fd9f
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 07 Jun 2000 11:59:25 +0000 |
parents | a4b321043588 |
children | 8b7b0c7c65db |
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 |
29080 | 2 ;; Copyright (C) 1985, 86, 88, 89, 92, 93, 94, 95, 96, 98, 2000 |
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 |
25278 | 5 ;; Author: Roland McGrath <roland@gnu.org> |
807
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) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
28 (eval-when-compile (require 'cl)) ; for `gensym' |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
29 |
360 | 30 ;;;###autoload |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
31 (defvar tags-file-name nil |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
32 "*File name of tags table. |
799 | 33 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
|
34 If you set this variable, do not also set `tags-table-list'. |
799 | 35 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
|
36 ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. |
824 | 37 ;;;###autoload (put 'tags-file-name 'variable-interactive "fVisit tags table: ") |
799 | 38 |
20836
18b33fb503f3
(etags): Fix defgroup syntax. Why should it
Kenichi Handa <handa@m17n.org>
parents:
20799
diff
changeset
|
39 (defgroup etags nil "Tags tables" |
20515 | 40 :group 'tools) |
41 | |
799 | 42 ;;;###autoload |
28243
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
43 (defcustom tags-case-fold-search 'default |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
44 "*Whether tags operations should be case-sensitive. |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
45 A value of t means case-insensitive, a value of nil means case-sensitive. |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
46 Any other value means use the setting of `case-fold-search'." |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
47 :group 'etags |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
48 :type '(choice (const :tag "Case-sensitive" nil) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
49 (const :tag "Case-insensitive" t) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
50 (other :tag "Use default" default)) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
51 :version "21.1") |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
52 |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
53 ;;;###autoload |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
54 ;; Use `visit-tags-table-buffer' to cycle through tags tables in this list. |
20515 | 55 (defcustom tags-table-list nil |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
56 "*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
|
57 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
|
58 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
|
59 If you set this variable, do not also set `tags-file-name'. |
20515 | 60 Use the `etags' program to make a tags table file." |
61 :group 'etags | |
62 :type '(repeat file)) | |
799 | 63 |
6140
35fc497c9f4e
(tags-add-tables): Change default value to 'ask-user; update doc.
Roland McGrath <roland@gnu.org>
parents:
5892
diff
changeset
|
64 ;;;###autoload |
20515 | 65 (defcustom tags-add-tables 'ask-user |
7112
91ba2f787c8f
(tags-add-tables): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6245
diff
changeset
|
66 "*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
|
67 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
|
68 Any other value means ask the user whether to add a new tags table |
20515 | 69 to the current list (as opposed to starting a new list)." |
70 :group 'etags | |
71 :type '(choice (const :tag "Do" t) | |
72 (const :tag "Don't" nil) | |
22594
d5904b1c89af
(tags-add-tables): Use `other' widget type.
Andreas Schwab <schwab@suse.de>
parents:
21669
diff
changeset
|
73 (other :tag "Ask" ask-user))) |
20515 | 74 |
75 (defcustom tags-revert-without-query nil | |
76 "*Non-nil means reread a TAGS table without querying, if it has changed." | |
77 :group 'etags | |
78 :type 'boolean) | |
5174
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
79 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
80 (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
|
81 "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
|
82 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
|
83 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
|
84 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
|
85 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
|
86 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
|
87 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
|
88 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
89 (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
|
90 "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
|
91 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
|
92 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
|
93 |
799 | 94 (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
|
95 "Pointer into `tags-table-computed-list' for the current state of searching. |
1149 | 96 Use `visit-tags-table-buffer' to cycle through tags tables in this list.") |
97 | |
98 (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
|
99 "Pointer into `tags-table-computed-list', where the current search started.") |
799 | 100 |
101 (defvar tags-table-set-list nil | |
102 "List of sets of tags table which have been used together in the past. | |
103 Each element is a list of strings which are file names.") | |
342 | 104 |
799 | 105 ;;;###autoload |
20515 | 106 (defcustom find-tag-hook nil |
799 | 107 "*Hook to be run by \\[find-tag] after finding a tag. See `run-hooks'. |
108 The value in the buffer in which \\[find-tag] is done is used, | |
20515 | 109 not the value in the buffer \\[find-tag] goes to." |
110 :group 'etags | |
111 :type 'hook) | |
799 | 112 |
113 ;;;###autoload | |
20515 | 114 (defcustom find-tag-default-function nil |
1149 | 115 "*A function of no arguments used by \\[find-tag] to pick a default tag. |
116 If nil, and the symbol that is the value of `major-mode' | |
799 | 117 has a `find-tag-default-function' property (see `put'), that is used. |
20515 | 118 Otherwise, `find-tag-default' is used." |
119 :group 'etags | |
120 :type 'function) | |
342 | 121 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
122 (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
|
123 "*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
|
124 :group 'etags |
21669
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21097
diff
changeset
|
125 :type 'integer |
9861518505cb
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21097
diff
changeset
|
126 :version "20.3") |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
127 |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
128 (defcustom tags-tag-face 'default |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
129 "*Face for tags in the output of `tags-apropos'." |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
130 :group 'etags |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
131 :type 'face |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
132 :version "21.1") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
133 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
134 (defcustom tags-apropos-verbose nil |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
135 "If non-nil, print the name of the tags file in the *Tags List* buffer." |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
136 :group 'etags |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
137 :type 'boolean |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
138 :version "21.1") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
139 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
140 (defcustom tags-apropos-additional-actions nil |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
141 "Specify additional actions for `tags-apropos'. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
142 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
143 If non-nil, value should be a list of triples (TITLE FUNCTION |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
144 TO-SEARCH). For each triple, `tags-apropos' processes TO-SEARCH and |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
145 lists tags from it. TO-SEARCH should be an alist, obarray, or symbol. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
146 If it is a symbol, the symbol's value is used. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
147 TITLE. a string, is a title used to label the additional list of tags. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
148 FUNCTION is a function to call when a symbol is selected in the |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
149 *Tags List* buffer. It will be called with one argument SYMBOL which |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
150 is the symbol being selected. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
151 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
152 Example value: |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
153 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
154 '((\"Emacs Lisp\" Info-goto-emacs-command-node obarray) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
155 (\"Common Lisp\" common-lisp-hyperspec common-lisp-hyperspec-obarray) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
156 (\"SCWM\" scwm-documentation scwm-obarray))" |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
157 :group 'etags |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
158 :type 'list |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
159 :version "21.1") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
160 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
161 (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
|
162 "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
|
163 |
799 | 164 (defvar default-tags-table-function nil |
5174
bb40928e9e47
(tags-add-tables): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5079
diff
changeset
|
165 "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
|
166 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
|
167 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
|
168 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
169 (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
|
170 "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
|
171 Pop back to the last location with \\[negative-argument] \\[find-tag].") |
799 | 172 |
173 ;; Tags table state. | |
174 ;; These variables are local in tags table buffers. | |
175 | |
176 (defvar tags-table-files nil | |
177 "List of file names covered by current tags table. | |
178 nil means it has not yet been computed; use `tags-table-files' to do so.") | |
179 | |
180 (defvar tags-completion-table nil | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
181 "Obarray of tag names defined in current tags table.") |
799 | 182 |
183 (defvar tags-included-tables nil | |
184 "List of tags tables included by the current tags table.") | |
185 | |
186 (defvar next-file-list nil | |
187 "List of files for \\[next-file] to process.") | |
188 | |
189 ;; Hooks for file formats. | |
190 | |
191 (defvar tags-table-format-hooks '(etags-recognize-tags-table | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
192 tags-recognize-empty-tags-table) |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
193 "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
|
194 The functions are called in order, with no arguments, |
799 | 195 until one returns non-nil. The function should make buffer-local bindings |
196 of the format-parsing tags function variables if successful.") | |
197 | |
198 (defvar file-of-tag-function nil | |
199 "Function to do the work of `file-of-tag' (which see).") | |
200 (defvar tags-table-files-function nil | |
201 "Function to do the work of `tags-table-files' (which see).") | |
202 (defvar tags-completion-table-function nil | |
203 "Function to build the tags-completion-table.") | |
204 (defvar snarf-tag-function nil | |
205 "Function to get info about a matched tag for `goto-tag-location-function'.") | |
206 (defvar goto-tag-location-function nil | |
207 "Function of to go to the location in the buffer specified by a tag. | |
208 One argument, the tag info returned by `snarf-tag-function'.") | |
209 (defvar find-tag-regexp-search-function nil | |
210 "Search function passed to `find-tag-in-order' for finding a regexp tag.") | |
211 (defvar find-tag-regexp-tag-order nil | |
212 "Tag order passed to `find-tag-in-order' for finding a regexp tag.") | |
213 (defvar find-tag-regexp-next-line-after-failure-p nil | |
214 "Flag passed to `find-tag-in-order' for finding a regexp tag.") | |
215 (defvar find-tag-search-function nil | |
216 "Search function passed to `find-tag-in-order' for finding a tag.") | |
217 (defvar find-tag-tag-order nil | |
218 "Tag order passed to `find-tag-in-order' for finding a tag.") | |
219 (defvar find-tag-next-line-after-failure-p nil | |
220 "Flag passed to `find-tag-in-order' for finding a tag.") | |
221 (defvar list-tags-function nil | |
222 "Function to do the work of `list-tags' (which see).") | |
223 (defvar tags-apropos-function nil | |
224 "Function to do the work of `tags-apropos' (which see).") | |
225 (defvar tags-included-tables-function nil | |
226 "Function to do the work of `tags-included-tables' (which see).") | |
227 (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
|
228 "Function to return t iff current buffer contains valid tags file.") |
799 | 229 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
230 ;; Initialize the tags table in the current buffer. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
231 ;; 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
|
232 ;; 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
|
233 ;; made buffer-local and initialized to nil. |
799 | 234 (defun initialize-new-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
235 (set (make-local-variable 'tags-table-files) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
236 (set (make-local-variable 'tags-completion-table) nil) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
237 (set (make-local-variable 'tags-included-tables) nil) |
23561
70fafedc3c4c
(initialize-new-tags-table):
Richard M. Stallman <rms@gnu.org>
parents:
23415
diff
changeset
|
238 ;; We used to initialize find-tag-marker-ring and tags-location-ring |
70fafedc3c4c
(initialize-new-tags-table):
Richard M. Stallman <rms@gnu.org>
parents:
23415
diff
changeset
|
239 ;; here, to new empty rings. But that is wrong, because those |
70fafedc3c4c
(initialize-new-tags-table):
Richard M. Stallman <rms@gnu.org>
parents:
23415
diff
changeset
|
240 ;; are global. |
70fafedc3c4c
(initialize-new-tags-table):
Richard M. Stallman <rms@gnu.org>
parents:
23415
diff
changeset
|
241 |
799 | 242 ;; Value is t if we have found a valid tags table buffer. |
243 (let ((hooks tags-table-format-hooks)) | |
244 (while (and hooks | |
245 (not (funcall (car hooks)))) | |
246 (setq hooks (cdr hooks))) | |
247 hooks)) | |
248 | |
249 ;;;###autoload | |
250 (defun visit-tags-table (file &optional local) | |
251 "Tell tags commands to use tags table file FILE. | |
342 | 252 FILE should be the name of a file created with the `etags' program. |
799 | 253 A directory name is ok too; it means file TAGS in that directory. |
254 | |
255 Normally \\[visit-tags-table] sets the global value of `tags-file-name'. | |
256 With a prefix arg, set the buffer-local value instead. | |
257 When you find a tag with \\[find-tag], the buffer it finds the tag | |
258 in is given a local value of this variable which is the name of the tags | |
259 file the tag was in." | |
342 | 260 (interactive (list (read-file-name "Visit tags table: (default TAGS) " |
261 default-directory | |
799 | 262 (expand-file-name "TAGS" |
263 default-directory) | |
264 t) | |
265 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
|
266 (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
|
267 ;; 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
|
268 ;; 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
|
269 ;; 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
|
270 ;; 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
|
271 ;; 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
|
272 ;; fully-expanded name. |
1138 | 273 (let ((tags-file-name file)) |
274 (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
|
275 (or (visit-tags-table-buffer file) |
1138 | 276 (signal 'file-error (list "Visiting tags table" |
277 "file does not exist" | |
278 file))) | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
279 ;; Set FILE to the expanded name. |
1138 | 280 (setq file tags-file-name))) |
799 | 281 (if local |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
282 ;; Set the local value of tags-file-name. |
1149 | 283 (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
|
284 ;; Set the global value of tags-file-name. |
1138 | 285 (setq-default tags-file-name file))) |
286 | |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
287 (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
|
288 "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
|
289 (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
|
290 (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
|
291 ;; 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
|
292 (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
|
293 (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
|
294 (computed nil) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
295 table-buffer) |
1149 | 296 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
297 (while tables |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
298 (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
|
299 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
|
300 (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
|
301 ;; 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
|
302 ;; 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
|
303 (save-excursion |
857ced7767c0
(tags-table-check-computed-list): Call tags-verify-table on existing
Roland McGrath <roland@gnu.org>
parents:
8973
diff
changeset
|
304 (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
|
305 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
306 (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
|
307 (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
|
308 ;; 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
|
309 ;; 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
|
310 (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
|
311 (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
|
312 (cdr tables))))) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
313 ;; 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
|
314 ;; 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
|
315 ;; 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
|
316 (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
|
317 (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
|
318 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
319 ;; 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
|
320 ;; 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
|
321 (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
|
322 tags-table-computed-list (nreverse computed)))))) |
1149 | 323 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
324 ;; 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
|
325 ;; 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
|
326 ;; 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
|
327 ;; 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
|
328 ;; 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
|
329 ;; 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
|
330 (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
|
331 (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
|
332 (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
|
333 (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
|
334 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
335 (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
|
336 ;; 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
|
337 ;; 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
|
338 (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
|
339 (computed nil) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
340 table-buffer) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
341 (while tables |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
342 (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
|
343 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
|
344 (if table-buffer |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
345 (save-excursion |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
346 (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
|
347 (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
|
348 ;; 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
|
349 ;; are processing. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
350 (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
|
351 tables)))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
352 ;; 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
|
353 ;; 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
|
354 ;; 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
|
355 (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
|
356 (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
|
357 (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
|
358 ;; 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
|
359 ;; 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
|
360 ;; current list. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
361 (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
|
362 ;; 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
|
363 (setcdr list (cdr (cdr list))))))) |
1149 | 364 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
365 ;; Expand tags table name FILE into a complete file name. |
1149 | 366 (defun tags-expand-table-name (file) |
367 (setq file (expand-file-name file)) | |
368 (if (file-directory-p file) | |
369 (expand-file-name "TAGS" file) | |
370 file)) | |
1138 | 371 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
372 ;; 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
|
373 ;; 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
|
374 (defun tags-table-list-member (file list) |
1149 | 375 (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
|
376 (while (and list |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
377 (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
|
378 (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
|
379 (setq list (cdr list))) |
1149 | 380 list) |
381 | |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
382 (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
|
383 "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
|
384 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
|
385 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
|
386 (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
|
387 ;; 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
|
388 ;; 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
|
389 (let (win) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
390 (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
|
391 (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
|
392 (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
|
393 ;; Decide whether to revert the file. |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
394 ;; 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
|
395 ;; 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
|
396 (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
|
397 (found nil)) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
398 (while tail |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
399 (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
|
400 (setq found t)) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
401 (setq tail (cdr tail))) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
402 found) |
20515 | 403 tags-revert-without-query |
19358
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
404 (yes-or-no-p |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
405 (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
|
406 file))))) |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
407 (and verify-tags-table-function |
33f430abc9ed
(tags-verify-table): Obey revert-without-query.
Richard M. Stallman <rms@gnu.org>
parents:
18623
diff
changeset
|
408 (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
|
409 (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
|
410 (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
|
411 (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
|
412 (progn |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
413 (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
|
414 (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
|
415 ;; 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
|
416 ;; 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
|
417 (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
|
418 (if tail |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
419 (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
|
420 (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
|
421 (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
|
422 (initialize-new-tags-table))))) |
4391
2f181ad12c41
(visit-tags-table-buffer): New local named
Richard M. Stallman <rms@gnu.org>
parents:
4389
diff
changeset
|
423 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
424 ;; 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
|
425 ;; 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
|
426 ;; 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
|
427 ;; 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
|
428 ;; 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
|
429 ;; 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
|
430 (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
|
431 (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
|
432 (found nil)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
433 ;; Loop over the list, looking for a table containing tags for THIS-FILE. |
1149 | 434 (while (and (not found) |
435 tables) | |
1138 | 436 |
8509
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
437 (if core-only |
be778f8834a5
(tags-table-including): Inside loop: if CORE-ONLY skip all consecutive
Roland McGrath <roland@gnu.org>
parents:
8456
diff
changeset
|
438 ;; 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
|
439 (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
|
440 (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
|
441 (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
|
442 ;; 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
|
443 (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
|
444 |
8014
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
445 (if tables |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
446 ;; 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
|
447 (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
|
448 (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
|
449 (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
|
450 (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
|
451 ;; Found it. |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
452 (setq found tables)))) |
1149 | 453 (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
|
454 (if found |
0d4288705550
(tags-table-including): Don't call tags-table-check-computed-list.
Roland McGrath <roland@gnu.org>
parents:
7934
diff
changeset
|
455 ;; 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
|
456 ;; 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
|
457 ;; 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
|
458 ;; 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
|
459 ;; 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
|
460 ;; 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
|
461 (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
|
462 (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
|
463 (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
|
464 (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
|
465 ;; 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
|
466 ;; 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
|
467 (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
|
468 (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
|
469 (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
|
470 (setq elt (cdr elt)))) |
8015
3d6ee294a710
Fix bits of last change lost in Emacs crash.
Roland McGrath <roland@gnu.org>
parents:
8014
diff
changeset
|
471 ;; 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
|
472 ;; 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
|
473 ;; 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
|
474 could-be)))) |
799 | 475 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
476 ;; 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
|
477 ;; 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
|
478 (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
|
479 ;; 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
|
480 (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
|
481 (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
|
482 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
483 ;; 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
|
484 (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
|
485 (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
|
486 ;; Wrap around. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
487 (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
|
488 |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
489 (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
|
490 ;; 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
|
491 (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
|
492 ;; 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
|
493 (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
|
494 |
799 | 495 (defun visit-tags-table-buffer (&optional cont) |
496 "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
|
497 If optional arg is a string, visit that file as a tags table. |
799 | 498 If optional arg is t, visit the next table in `tags-table-list'. |
499 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
|
500 just select the buffer visiting `tags-file-name'. |
1149 | 501 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
|
502 `tags-file-name', `tags-table-list', `tags-table-list-pointer'. |
799 | 503 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
|
504 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
505 ;; 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
|
506 (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
|
507 ;; 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
|
508 (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
|
509 (error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
510 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
511 (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
|
512 "use \\[visit-tags-table] to select one"))))) |
1138 | 513 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
514 ((eq t cont) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
515 ;; 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
|
516 (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
|
517 ;; 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
|
518 (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
|
519 (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
|
520 (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
|
521 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
522 (t |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
523 ;; 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
|
524 (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
|
525 (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
|
526 (or |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
527 ;; 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
|
528 (if (stringp cont) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
529 (prog1 cont |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
530 (setq cont nil))) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
531 ;; 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
|
532 (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
|
533 ;; 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
|
534 (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
|
535 (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
|
536 ;; 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
|
537 ;; 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
|
538 ;; 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
|
539 ;; do it below. |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
540 (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
|
541 (or |
8040
b35d46349f46
(visit-tags-table-buffer): Don't take car of return frmo
Roland McGrath <roland@gnu.org>
parents:
8015
diff
changeset
|
542 ;; 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
|
543 (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
|
544 ;; 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
|
545 ;; 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
|
546 (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
|
547 ;; 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
|
548 ;; 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
|
549 (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
|
550 (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
|
551 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
|
552 tags-file-name) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
553 ;; 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
|
554 ;; 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
|
555 (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
|
556 file) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
557 (while (and list |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
558 (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
|
559 (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
|
560 (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
|
561 (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
|
562 (car list)) |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
563 ;; 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
|
564 (expand-file-name |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
565 (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
|
566 default-directory |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
567 "TAGS" |
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
568 t)))))) |
1138 | 569 |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
570 ;; 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
|
571 (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
|
572 |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
573 (unless (and (eq cont t) (null tags-table-list-pointer)) |
7934
b5e9b6a00f5d
(tags-table-computed-list, tags-table-computed-list-for): New variables.
Roland McGrath <roland@gnu.org>
parents:
7904
diff
changeset
|
574 ;; 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
|
575 ;; 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
|
576 ;; 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
|
577 (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
|
578 (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
|
579 (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
|
580 |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
581 ;; 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
|
582 (progn |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
583 ;; 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
|
584 ;; 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
|
585 (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
|
586 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
587 ;; 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
|
588 ;; 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
|
589 ;; 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
|
590 (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
|
591 ;; 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
|
592 (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
|
593 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
|
594 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
|
595 (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
|
596 ;; 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
|
597 (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
|
598 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
|
599 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
600 ;; 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
|
601 ;; 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
|
602 (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
|
603 (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
|
604 (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
|
605 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
|
606 (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
|
607 (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
|
608 (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
|
609 ;; 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
|
610 (progn |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
611 (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
|
612 ;; 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
|
613 (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
|
614 (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
|
615 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
|
616 (setq tags-table-list (car sets))) |
1149 | 617 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
618 ;; 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
|
619 (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
|
620 (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
|
621 (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
|
622 (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
|
623 (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
|
624 "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
|
625 ;; 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
|
626 (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
|
627 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
|
628 |
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
629 ;; 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
|
630 (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
|
631 (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
|
632 (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
|
633 (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
|
634 (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
|
635 tags-table-set-list))) |
29080 | 636 ;; Clear out buffers holding old tables. |
637 (dolist (table tags-table-list) | |
638 (let ((buffer (find-buffer-visiting table))) | |
639 (if buffer | |
640 (kill-buffer buffer)))) | |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
641 (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
|
642 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
643 ;; 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
|
644 (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
|
645 ;; 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
|
646 ;; 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
|
647 (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
|
648 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
|
649 tags-table-computed-list))))) |
1156 | 650 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
651 ;; 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
|
652 t) |
1149 | 653 |
8297
80d4bf018aec
(visit-tags-table-buffer): Bind a variable local-tags-file-name with the
Roland McGrath <roland@gnu.org>
parents:
8187
diff
changeset
|
654 ;; 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
|
655 (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
|
656 (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
|
657 (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
|
658 (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
|
659 (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
|
660 |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
661 (defun tags-reset-tags-tables () |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
662 "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
|
663 (interactive) |
23377
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
664 ;; Clear out the markers we are throwing away. |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
665 (let ((i 0)) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
666 (while (< i find-tag-marker-ring-length) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
667 (if (aref (cddr tags-location-ring) i) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
668 (set-marker (aref (cddr tags-location-ring) i) nil)) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
669 (if (aref (cddr find-tag-marker-ring) i) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
670 (set-marker (aref (cddr find-tag-marker-ring) i) nil)) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
671 (setq i (1+ i)))) |
9525
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
672 (setq tags-file-name nil |
23377
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
673 tags-location-ring (make-ring find-tag-marker-ring-length) |
acb6d2c4220b
(tags-reset-tags-tables): Properly
Karl Heuer <kwzh@gnu.org>
parents:
22594
diff
changeset
|
674 find-tag-marker-ring (make-ring find-tag-marker-ring-length) |
9525
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
675 tags-table-list nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
676 tags-table-computed-list nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
677 tags-table-computed-list-for nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
678 tags-table-list-pointer nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
679 tags-table-list-started-at nil |
6cd679419a9c
(tags-reset-tags-tables): New function.
Roland McGrath <roland@gnu.org>
parents:
9152
diff
changeset
|
680 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
|
681 |
342 | 682 (defun file-of-tag () |
683 "Return the file name of the file whose tags point is within. | |
799 | 684 Assumes the tags table is the current buffer. |
685 File name returned is relative to tags table file's directory." | |
686 (funcall file-of-tag-function)) | |
342 | 687 |
360 | 688 ;;;###autoload |
799 | 689 (defun tags-table-files () |
690 "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
|
691 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
|
692 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
|
693 without directory names." |
1397
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
694 (or tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
695 (setq tags-table-files |
d469afe703c4
(visit-tags-table-buffer): When trying to pick table, call
Roland McGrath <roland@gnu.org>
parents:
1156
diff
changeset
|
696 (funcall tags-table-files-function)))) |
799 | 697 |
698 (defun tags-included-tables () | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
699 "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
|
700 Assumes the tags table is the current buffer." |
799 | 701 (or tags-included-tables |
702 (setq tags-included-tables (funcall tags-included-tables-function)))) | |
703 | |
704 ;; Build tags-completion-table on demand. The single current tags table | |
705 ;; and its included tags tables (and their included tables, etc.) have | |
706 ;; their tags included in the completion table. | |
707 (defun tags-completion-table () | |
708 (or tags-completion-table | |
709 (condition-case () | |
710 (prog2 | |
711 (message "Making tags completion table for %s..." buffer-file-name) | |
712 (let ((included (tags-included-tables)) | |
713 (table (funcall tags-completion-table-function))) | |
714 (save-excursion | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
715 ;; 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
|
716 ;; included table's completion obarray to the parent obarray. |
799 | 717 (while included |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
718 ;; Visit the buffer. |
799 | 719 (let ((tags-file-name (car included))) |
1149 | 720 (visit-tags-table-buffer 'same)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
721 ;; Recurse in that buffer to compute its completion table. |
799 | 722 (if (tags-completion-table) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
723 ;; Combine the tables. |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
724 (mapatoms (lambda (sym) (intern (symbol-name sym) table)) |
799 | 725 tags-completion-table)) |
726 (setq included (cdr included)))) | |
727 (setq tags-completion-table table)) | |
728 (message "Making tags completion table for %s...done" | |
729 buffer-file-name)) | |
730 (quit (message "Tags completion table construction aborted.") | |
731 (setq tags-completion-table nil))))) | |
732 | |
733 ;; Completion function for tags. Does normal try-completion, | |
734 ;; but builds tags-completion-table on demand. | |
735 (defun tags-complete-tag (string predicate what) | |
736 (save-excursion | |
5079
1d253bc912d8
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Richard M. Stallman <rms@gnu.org>
parents:
4940
diff
changeset
|
737 ;; 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
|
738 (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
|
739 (visit-tags-table-buffer)) |
799 | 740 (if (eq what t) |
741 (all-completions string (tags-completion-table) predicate) | |
742 (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
|
743 |
342 | 744 ;; Return a default tag to search for, based on the text at point. |
745 (defun find-tag-default () | |
746 (save-excursion | |
747 (while (looking-at "\\sw\\|\\s_") | |
748 (forward-char 1)) | |
799 | 749 (if (or (re-search-backward "\\sw\\|\\s_" |
750 (save-excursion (beginning-of-line) (point)) | |
751 t) | |
752 (re-search-forward "\\(\\sw\\|\\s_\\)+" | |
753 (save-excursion (end-of-line) (point)) | |
754 t)) | |
755 (progn (goto-char (match-end 0)) | |
342 | 756 (buffer-substring (point) |
757 (progn (forward-sexp -1) | |
758 (while (looking-at "\\s'") | |
759 (forward-char 1)) | |
760 (point)))) | |
761 nil))) | |
762 | |
799 | 763 ;; Read a tag name from the minibuffer with defaulting and completion. |
342 | 764 (defun find-tag-tag (string) |
799 | 765 (let* ((default (funcall (or find-tag-default-function |
766 (get major-mode 'find-tag-default-function) | |
767 'find-tag-default))) | |
768 (spec (completing-read (if default | |
769 (format "%s(default %s) " string default) | |
770 string) | |
19735
73c2effb07a4
(find-tag-tag): Pass default to completing-read.
Richard M. Stallman <rms@gnu.org>
parents:
19358
diff
changeset
|
771 'tags-complete-tag |
73c2effb07a4
(find-tag-tag): Pass default to completing-read.
Richard M. Stallman <rms@gnu.org>
parents:
19358
diff
changeset
|
772 nil nil nil nil default))) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
773 (if (equal spec "") |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
774 (or default (error "There is no default tag")) |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
775 spec))) |
342 | 776 |
852 | 777 (defvar last-tag nil |
778 "Last tag found by \\[find-tag].") | |
779 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
780 ;; 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
|
781 (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
|
782 (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
|
783 (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
|
784 '- |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
785 t)) |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
786 (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
|
787 (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
|
788 (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
|
789 |
7904
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
790 (defvar find-tag-history nil) |
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
791 |
29080 | 792 ;; Dynamic bondage: |
793 (eval-when-compile | |
794 (defvar etags-case-fold-search) | |
795 (defvar etags-syntax-table)) | |
796 | |
799 | 797 ;;;###autoload |
798 (defun find-tag-noselect (tagname &optional next-p regexp-p) | |
799 "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
|
800 Returns the buffer containing the tag's definition and moves its point there, |
799 | 801 but does not select the buffer. |
802 The default for TAGNAME is the expression in the buffer near point. | |
474 | 803 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
804 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
|
805 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
|
806 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
|
807 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
|
808 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
|
809 |
799 | 810 If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp. |
342 | 811 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
812 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
|
813 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
|
814 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
|
815 |
799 | 816 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
|
817 (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
|
818 |
7904
c2259f58ef7e
(find-tag-history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7843
diff
changeset
|
819 (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
|
820 ;; 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
|
821 ;; 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
|
822 (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
|
823 (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
|
824 ;; 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
|
825 (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
|
826 (error "No previous tag locations") |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
827 (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
|
828 (prog1 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
829 ;; Move to the saved location. |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
830 (set-buffer (or (marker-buffer marker) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
831 (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
|
832 (goto-char (marker-position marker)) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3548
diff
changeset
|
833 ;; 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
|
834 (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
|
835 ;; 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
|
836 (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
|
837 ;; Record whence we came. |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
838 (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
|
839 (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
|
840 ;; 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
|
841 (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
|
842 ;; 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
|
843 (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
|
844 ;; 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
|
845 (setq last-tag tagname)) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
846 ;; 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
|
847 (let ((marker (make-marker))) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
848 (save-excursion |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
849 (set-buffer |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
850 ;; find-tag-in-order does the real work. |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
851 (find-tag-in-order |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
852 (if next-p last-tag tagname) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
853 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
854 find-tag-regexp-search-function |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
855 find-tag-search-function) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
856 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
857 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
|
858 find-tag-tag-order) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
859 (if regexp-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
860 find-tag-regexp-next-line-after-failure-p |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
861 find-tag-next-line-after-failure-p) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
862 (if regexp-p "matching" "containing") |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
863 (not next-p))) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
864 (set-marker marker (point)) |
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
865 (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
|
866 (ring-insert tags-location-ring marker) |
8973
99d8538efe2f
(find-tag-noselect): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
8623
diff
changeset
|
867 (current-buffer)))))) |
360 | 868 |
869 ;;;###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
|
870 (defun find-tag (tagname &optional next-p regexp-p) |
799 | 871 "Find tag (in current tags table) whose name contains TAGNAME. |
872 Select the buffer containing the tag's definition, and move point there. | |
873 The default for TAGNAME is the expression in the buffer around or before point. | |
342 | 874 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
875 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
|
876 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
|
877 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
|
878 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
|
879 or just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 880 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
881 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
|
882 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
883 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
|
884 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
|
885 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
|
886 |
799 | 887 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
|
888 (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
|
889 (switch-to-buffer (find-tag-noselect tagname next-p regexp-p))) |
799 | 890 ;;;###autoload (define-key esc-map "." 'find-tag) |
342 | 891 |
727 | 892 ;;;###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
|
893 (defun find-tag-other-window (tagname &optional next-p regexp-p) |
799 | 894 "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
|
895 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
|
896 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
|
897 around or before point. |
799 | 898 |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
899 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
|
900 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
|
901 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
|
902 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
|
903 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 904 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
905 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
|
906 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
907 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
|
908 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
|
909 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
|
910 |
799 | 911 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
|
912 (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
|
913 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
914 ;; 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
|
915 ;; 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
|
916 ;; 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
|
917 ;; doing find-tag-noselect, and restore it after. |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
918 (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
|
919 (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
|
920 (tagpoint (progn (set-buffer tagbuf) (point)))) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
921 (set-window-point (prog1 |
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
922 (selected-window) |
1976
eda7eec8f8ad
* etags.el (find-tag-other-window): If another window is already
Jim Blandy <jimb@redhat.com>
parents:
1816
diff
changeset
|
923 (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
|
924 ;; 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
|
925 ;; 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
|
926 ;; 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
|
927 ;; 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
|
928 ;; 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
|
929 (set-window-point (selected-window) tagpoint)) |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
930 window-point))) |
799 | 931 ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window) |
932 | |
804 | 933 ;;;###autoload |
799 | 934 (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
|
935 "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
|
936 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
|
937 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
|
938 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
|
939 |
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
940 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
|
941 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
|
942 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
|
943 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
|
944 just \\[negative-argument]), pop back to the previous tag gone to. |
727 | 945 |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
946 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
|
947 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
948 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
|
949 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
|
950 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
|
951 |
799 | 952 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
|
953 (interactive (find-tag-interactive "Find tag other frame: ")) |
799 | 954 (let ((pop-up-frames t)) |
955 (find-tag-other-window tagname next-p))) | |
956 ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame) | |
342 | 957 |
360 | 958 ;;;###autoload |
799 | 959 (defun find-tag-regexp (regexp &optional next-p other-window) |
960 "Find tag (in current tags table) whose name matches REGEXP. | |
961 Select the buffer containing the tag's definition and move point there. | |
962 | |
2590
9dace03bd76c
(find-tag-interactive): New function to read args for find-tag et al.
Roland McGrath <roland@gnu.org>
parents:
2448
diff
changeset
|
963 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
|
964 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
|
965 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
|
966 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
|
967 just \\[negative-argument]), pop back to the previous tag gone to. |
799 | 968 |
969 If third arg OTHER-WINDOW is non-nil, select the buffer in another window. | |
970 | |
20799
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
971 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
|
972 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
|
973 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
|
974 |
799 | 975 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
|
976 (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
|
977 ;; 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
|
978 (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
|
979 regexp next-p t)) |
8187
9120cee6bfab
(find-tag-regexp): Bind to C-M-..
Richard M. Stallman <rms@gnu.org>
parents:
8116
diff
changeset
|
980 ;;;###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
|
981 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
982 ;;;###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
|
983 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
984 ;;;###autoload |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
985 (defun pop-tag-mark () |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
986 "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
|
987 |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
988 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
|
989 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
|
990 where they were found." |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
991 (interactive) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
992 (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
|
993 (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
|
994 (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
|
995 (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
|
996 (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
|
997 (goto-char (marker-position marker)) |
e244bb966970
(find-tag-marker-ring-length): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20682
diff
changeset
|
998 (set-marker marker nil nil))) |
799 | 999 |
1000 ;; Internal tag finding function. | |
1001 | |
1002 ;; PATTERN is a string to pass to second arg SEARCH-FORWARD-FUNC, and to | |
1003 ;; any member of the function list ORDER (third arg). If ORDER is nil, | |
1004 ;; use saved state to continue a previous search. | |
1005 | |
1006 ;; Fourth arg MATCHING is a string, an English '-ing' word, to be used in | |
1007 ;; an error message. | |
1008 | |
1009 ;; Fifth arg NEXT-LINE-AFTER-FAILURE-P is non-nil if after a failed match, | |
1010 ;; point should be moved to the next line. | |
1011 | |
1012 ;; Algorithm is as follows. For each qualifier-func in ORDER, go to | |
1013 ;; beginning of tags file, and perform inner loop: for each naive match for | |
1014 ;; PATTERN found using SEARCH-FORWARD-FUNC, qualify the naive match using | |
1015 ;; qualifier-func. If it qualifies, go to the specified line in the | |
1016 ;; specified source file and return. Qualified matches are remembered to | |
1017 ;; avoid repetition. State is saved so that the loop can be continued. | |
1018 | |
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
|
1019 (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
|
1020 |
1555
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1021 (defun find-tag-in-order (pattern |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1022 search-forward-func |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1023 order |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1024 next-line-after-failure-p |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1025 matching |
695c6eb2ff31
* etags.el (find-tag-noselect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1397
diff
changeset
|
1026 first-search) |
799 | 1027 (let (file ;name of file containing tag |
1028 tag-info ;where to find the tag in FILE | |
1029 (first-table t) | |
1030 (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
|
1031 (match-marker (make-marker)) |
799 | 1032 goto-func |
28243
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1033 (case-fold-search (if (memq tags-case-fold-search '(nil t)) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1034 tags-case-fold-search |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1035 case-fold-search)) |
799 | 1036 ) |
1037 (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
|
1038 |
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
|
1039 (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
|
1040 ;; 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
|
1041 ;; 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
|
1042 ;; 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
|
1043 ;; 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
|
1044 (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
|
1045 ;; 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
|
1046 ;; 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
|
1047 ;; 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
|
1048 ;; 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
|
1049 ;; 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
|
1050 (visit-tags-table-buffer 'same)) |
1149 | 1051 |
799 | 1052 ;; 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
|
1053 (catch 'qualified-match-found |
1149 | 1054 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1055 ;; Iterate over the list of tags tables. |
799 | 1056 (while (or first-table |
1057 (visit-tags-table-buffer t)) | |
1058 | |
884 | 1059 (and first-search first-table |
1060 ;; Start at beginning of tags file. | |
1061 (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
|
1062 |
884 | 1063 (setq first-table nil) |
799 | 1064 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1065 ;; Iterate over the list of ordering predicates. |
799 | 1066 (while order |
1067 (while (funcall search-forward-func pattern nil t) | |
1068 ;; Naive match found. Qualify the match. | |
1069 (and (funcall (car order) pattern) | |
1070 ;; 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
|
1071 (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
|
1072 (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
|
1073 (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
|
1074 tag-lines-already-matched)) |
799 | 1075 (throw 'qualified-match-found nil)) |
1076 (if next-line-after-failure-p | |
1077 (forward-line 1))) | |
1078 ;; Try the next flavor of match. | |
1079 (setq order (cdr order)) | |
1080 (goto-char (point-min))) | |
1081 (setq order tag-order)) | |
1082 ;; 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
|
1083 ;; 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
|
1084 ;; 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
|
1085 (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
|
1086 (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
|
1087 (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
|
1088 (set-marker match-marker nil nil) |
799 | 1089 (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
|
1090 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
|
1091 |
799 | 1092 ;; Found a tag; extract location info. |
1093 (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
|
1094 (setq tag-lines-already-matched (cons match-marker |
799 | 1095 tag-lines-already-matched)) |
1096 ;; Expand the filename, using the tags table buffer's default-directory. | |
1097 (setq file (expand-file-name (file-of-tag)) | |
1098 tag-info (funcall snarf-tag-function)) | |
1099 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1100 ;; Get the local value in the tags table buffer before switching buffers. |
799 | 1101 (setq goto-func goto-tag-location-function) |
1102 | |
1103 ;; Find the right line in the specified file. | |
1104 (set-buffer (find-file-noselect file)) | |
1105 (widen) | |
1106 (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
|
1107 (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
|
1108 |
799 | 1109 ;; Return the buffer where the tag was found. |
1110 (current-buffer)))) | |
1111 | |
1112 ;; `etags' TAGS file format support. | |
1113 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1114 ;; 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
|
1115 ;; the tags table format variables, and return non-nil. |
799 | 1116 (defun etags-recognize-tags-table () |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1117 (and (etags-verify-tags-table) |
1136 | 1118 ;; It is annoying to flash messages on the screen briefly, |
1119 ;; and this message is not useful. -- rms | |
1120 ;; (message "%s is an `etags' TAGS file" buffer-file-name) | |
29080 | 1121 (mapc (lambda (elt) (set (make-local-variable (car elt)) (cdr elt))) |
1122 '((file-of-tag-function . etags-file-of-tag) | |
1123 (tags-table-files-function . etags-tags-table-files) | |
1124 (tags-completion-table-function . etags-tags-completion-table) | |
1125 (snarf-tag-function . etags-snarf-tag) | |
1126 (goto-tag-location-function . etags-goto-tag-location) | |
1127 (find-tag-regexp-search-function . re-search-forward) | |
1128 (find-tag-regexp-tag-order . (tag-re-match-p)) | |
1129 (find-tag-regexp-next-line-after-failure-p . t) | |
1130 (find-tag-search-function . search-forward) | |
1131 (find-tag-tag-order . (tag-exact-file-name-match-p | |
1132 tag-exact-match-p | |
1133 tag-symbol-match-p | |
1134 tag-word-match-p | |
1135 tag-any-match-p)) | |
1136 (find-tag-next-line-after-failure-p . nil) | |
1137 (list-tags-function . etags-list-tags) | |
1138 (tags-apropos-function . etags-tags-apropos) | |
1139 (tags-included-tables-function . etags-tags-included-tables) | |
1140 (verify-tags-table-function . etags-verify-tags-table) | |
1141 )))) | |
799 | 1142 |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1143 ;; Return non-nil iff the current buffer is a valid etags TAGS file. |
799 | 1144 (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
|
1145 ;; 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
|
1146 (eq (char-after 1) ?\f)) |
799 | 1147 |
1148 (defun etags-file-of-tag () | |
1149 (save-excursion | |
16367
168e1370e887
(etags-file-of-tag): Fix looking-at regexp.
Richard M. Stallman <rms@gnu.org>
parents:
16281
diff
changeset
|
1150 (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
|
1151 (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
|
1152 (file-truename default-directory)))) |
799 | 1153 |
10680
69cbb0d5671d
(etags-file-of-tag): Handle file name used as tag.
Richard M. Stallman <rms@gnu.org>
parents:
10661
diff
changeset
|
1154 |
799 | 1155 (defun etags-tags-completion-table () |
1156 (let ((table (make-vector 511 0))) | |
1157 (save-excursion | |
1158 (goto-char (point-min)) | |
2448
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1159 ;; 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
|
1160 ;; \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
|
1161 ;; \2 is not interesting; |
0d7fdb12dcdb
(etags-tags-completion-table): Rewritten with a mondo regexp.
Roland McGrath <roland@gnu.org>
parents:
2445
diff
changeset
|
1162 ;; \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
|
1163 ;; \4 is not interesting; |
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1164 ;; \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
|
1165 ;; \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
|
1166 ;; \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
|
1167 (while (re-search-forward |
28738
d53c2c6bc56f
(etags-tags-completion-table): Add a `:'
Gerd Moellmann <gerd@gnu.org>
parents:
28704
diff
changeset
|
1168 "^\\(\\([^\177]+[^-a-zA-Z0-9_+*$:\177]+\\)?\ |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1169 \\([-a-zA-Z0-9_+*$?:]+\\)[^-a-zA-Z0-9_+*$?:\177]*\\)\177\ |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1170 \\(\\([^\n\001]+\\)\001\\)?\\([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
|
1171 nil t) |
4407
5568d8e60c21
(etags-tags-completion-table): Fixed regexp for today's format.
Roland McGrath <roland@gnu.org>
parents:
4391
diff
changeset
|
1172 (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
|
1173 ;; 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
|
1174 (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
|
1175 ;; 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
|
1176 (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
|
1177 table))) |
799 | 1178 table)) |
1179 | |
1180 (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
|
1181 (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
|
1182 (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
|
1183 (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
|
1184 (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
|
1185 ;; 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
|
1186 ;; 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
|
1187 ;; 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
|
1188 (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
|
1189 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
|
1190 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
|
1191 |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1192 ;; 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
|
1193 (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
|
1194 (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
|
1195 (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
|
1196 (point)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1197 ;; 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
|
1198 (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
|
1199 (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
|
1200 (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
|
1201 (point) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1202 (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
|
1203 (point)))))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1204 (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
|
1205 (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
|
1206 (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
|
1207 (point) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1208 (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
|
1209 (point))))))) |
799 | 1210 ;; Leave point on the next line of the tags file. |
1211 (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
|
1212 (cons tag-text (cons line startpos)))) |
799 | 1213 |
6244
3ad3a0150b6d
(etags-tags-completion-table): Let the line number or char pos be empty.
Roland McGrath <roland@gnu.org>
parents:
6140
diff
changeset
|
1214 ;; 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
|
1215 ;; 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
|
1216 ;; 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
|
1217 ;; 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
|
1218 ;; (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
|
1219 ;; 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
|
1220 ;; 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
|
1221 ;; a search window which expands until it hits the start of file. |
799 | 1222 (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
|
1223 (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
|
1224 (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
|
1225 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
|
1226 (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
|
1227 ;; 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
|
1228 (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
|
1229 (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
|
1230 (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
|
1231 ;; 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
|
1232 ;; 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
|
1233 ;; 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
|
1234 ;; 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
|
1235 (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
|
1236 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
|
1237 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
|
1238 "\\(^\\|\^m\\)" "^") |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1239 (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
|
1240 ;; 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
|
1241 ;; 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
|
1242 (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
|
1243 ;; 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
|
1244 (or startpos |
15770
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1245 (if line |
17158dfe7765
(etags-goto-tag-location): New local variable LINE; use it.
Roland McGrath <roland@gnu.org>
parents:
15360
diff
changeset
|
1246 (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
|
1247 (point))))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1248 (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
|
1249 (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
|
1250 ;; 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
|
1251 (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
|
1252 (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
|
1253 (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
|
1254 (progn |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1255 (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
|
1256 (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
|
1257 (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
|
1258 (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
|
1259 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
|
1260 (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
|
1261 (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
|
1262 (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
|
1263 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
|
1264 ;; 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
|
1265 ;; 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
|
1266 (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
|
1267 (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
|
1268 (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
|
1269 (beginning-of-line))) |
799 | 1270 |
1271 (defun etags-list-tags (file) | |
1272 (goto-char 1) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1273 (when (search-forward (concat "\f\n" file ",") nil t) |
799 | 1274 (forward-line 1) |
1275 (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
|
1276 (let ((tag (buffer-substring (point) |
c05d1d7bc400
(etags-list-tags): Check for explicit tag names.
Roland McGrath <roland@gnu.org>
parents:
6244
diff
changeset
|
1277 (progn (skip-chars-forward "^\177") |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1278 (point)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1279 (props `(action find-tag-other-window mouse-face highlight |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1280 face ,tags-tag-face)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1281 (pt (with-current-buffer standard-output (point)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1282 (when (looking-at "[^\n]+\001") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1283 ;; There is an explicit tag name; use that. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1284 (setq tag (buffer-substring (1+ (point)) ; skip \177 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1285 (progn (skip-chars-forward "^\001") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1286 (point))))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1287 (princ tag) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1288 (when (= (aref tag 0) ?\() (princ " ...)")) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1289 (add-text-properties pt (with-current-buffer standard-output (point)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1290 (cons 'item (cons tag props)) standard-output)) |
799 | 1291 (terpri) |
4940
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1292 (forward-line 1)) |
2f65b0f9c6fc
(etags-list-tags): Return t if found the file.
Richard M. Stallman <rms@gnu.org>
parents:
4857
diff
changeset
|
1293 t)) |
799 | 1294 |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1295 (defmacro tags-with-face (face &rest body) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1296 "Execute BODY, give output to `standard-output' face FACE." |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1297 (let ((pp (gensym "twf-"))) |
29086 | 1298 `(let ((,pp (with-current-buffer standard-output (point)))) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1299 ,@body |
29086 | 1300 (put-text-property ,pp (with-current-buffer standard-output (point)) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1301 'face ,face standard-output)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1302 |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1303 (defun etags-tags-apropos-additional (regexp) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1304 "Display tags matching REGEXP from `tags-apropos-additional-actions'." |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1305 (with-current-buffer standard-output |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1306 (dolist (oba tags-apropos-additional-actions) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1307 (princ "\n\n") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1308 (tags-with-face 'highlight (princ (car oba))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1309 (princ":\n\n") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1310 (let* ((props `(action ,(cadr oba) mouse-face highlight face |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1311 ,tags-tag-face)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1312 (beg (point)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1313 (symbs (car (cddr oba))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1314 (ins-symb (lambda (sy) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1315 (let ((sn (symbol-name sy))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1316 (when (string-match regexp sn) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1317 (add-text-properties (point) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1318 (progn (princ sy) (point)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1319 (cons 'item (cons sn props))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1320 (terpri)))))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1321 (when (symbolp symbs) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1322 (if (boundp symbs) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1323 (setq symbs (symbol-value symbs)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1324 (insert "symbol `" (symbol-name symbs) "' has no value\n") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1325 (setq symbs nil))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1326 (if (vectorp symbs) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1327 (mapatoms ins-symb symbs) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1328 (dolist (sy symbs) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1329 (funcall ins-symb (car sy)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1330 (sort-lines nil beg (point)))))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1331 |
799 | 1332 (defun etags-tags-apropos (string) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1333 (when tags-apropos-verbose |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1334 (princ "Tags in file `") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1335 (tags-with-face 'highlight (princ buffer-file-name)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1336 (princ "':\n\n")) |
799 | 1337 (goto-char 1) |
1338 (while (re-search-forward string nil t) | |
1339 (beginning-of-line) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1340 (let ((tag (buffer-substring (point) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1341 (progn (skip-chars-forward "^\177") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1342 (point)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1343 (props `(action find-tag-other-window mouse-face highlight |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1344 face ,tags-tag-face)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1345 (pt (with-current-buffer standard-output (point)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1346 (princ tag) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1347 (when (= (aref tag 0) ?\() (princ " ...)")) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1348 (add-text-properties pt (with-current-buffer standard-output (point)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1349 `(item ,tag ,@props) standard-output)) |
799 | 1350 (terpri) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1351 (forward-line 1)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1352 (when tags-apropos-verbose (princ "\n"))) |
799 | 1353 |
1354 (defun etags-tags-table-files () | |
1355 (let ((files nil) | |
1356 beg) | |
1357 (goto-char (point-min)) | |
1358 (while (search-forward "\f\n" nil t) | |
1359 (setq beg (point)) | |
9579
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1360 (end-of-line) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1361 (skip-chars-backward "^," beg) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1362 (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
|
1363 (setq files (cons (buffer-substring beg (1- (point))) files)))) |
799 | 1364 (nreverse files))) |
1365 | |
1366 (defun etags-tags-included-tables () | |
1367 (let ((files nil) | |
1368 beg) | |
1369 (goto-char (point-min)) | |
1370 (while (search-forward "\f\n" nil t) | |
1371 (setq beg (point)) | |
9579
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1372 (end-of-line) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1373 (skip-chars-backward "^," beg) |
2a5d9c96525f
(etags-tags-table-files, etags-tags-included-tables):
Richard M. Stallman <rms@gnu.org>
parents:
9525
diff
changeset
|
1374 (if (looking-at "include$") |
799 | 1375 ;; 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
|
1376 (setq files (cons (expand-file-name (buffer-substring beg (1- (point)))) |
799 | 1377 files)))) |
1378 (nreverse files))) | |
1379 | |
1380 ;; Empty tags file support. | |
1381 | |
1696
cceb5375ce40
Many comments added and docstrings fixed.
Roland McGrath <roland@gnu.org>
parents:
1555
diff
changeset
|
1382 ;; 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
|
1383 ;; variables which do nothing. |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1384 (defun tags-recognize-empty-tags-table () |
799 | 1385 (and (zerop (buffer-size)) |
29080 | 1386 (mapc (lambda (sym) (set (make-local-variable sym) 'ignore)) |
1387 '(tags-table-files-function | |
1388 tags-completion-table-function | |
1389 find-tag-regexp-search-function | |
1390 find-tag-search-function | |
1391 tags-apropos-function | |
1392 tags-included-tables-function)) | |
799 | 1393 (set (make-local-variable 'verify-tags-table-function) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1394 (lambda () (zerop (buffer-size)))))) |
799 | 1395 |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1396 ;; Match qualifier functions for tagnames. |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1397 ;; XXX these functions assume etags file format. |
799 | 1398 |
884 | 1399 ;; This might be a neat idea, but it's too hairy at the moment. |
1400 ;;(defmacro tags-with-syntax (&rest body) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1401 ;; `(let ((current (current-buffer)) |
884 | 1402 ;; (otable (syntax-table)) |
1403 ;; (buffer (find-file-noselect (file-of-tag))) | |
1404 ;; table) | |
1405 ;; (unwind-protect | |
1406 ;; (progn | |
1407 ;; (set-buffer buffer) | |
1408 ;; (setq table (syntax-table)) | |
1409 ;; (set-buffer current) | |
1410 ;; (set-syntax-table table) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1411 ;; ,@body) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1412 ;; (set-syntax-table otable)))) |
884 | 1413 ;;(put 'tags-with-syntax 'edebug-form-spec '(&rest form)) |
877 | 1414 |
9021
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1415 ;; t if point is at a tag line that matches TAG exactly. |
799 | 1416 ;; point should be just after a string that matches TAG. |
884 | 1417 (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
|
1418 ;; 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
|
1419 (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
|
1420 (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
|
1421 ;; 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
|
1422 (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
|
1423 |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1424 ;; 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
|
1425 ;; 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
|
1426 (defun tag-symbol-match-p (tag) |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1427 (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
|
1428 (save-excursion |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1429 (backward-char (1+ (length tag))) |
e0709ca0418a
(tag-symbol-match-p): New function.
Roland McGrath <roland@gnu.org>
parents:
9020
diff
changeset
|
1430 (and (looking-at "\\Sw") (looking-at "\\S_"))))) |
799 | 1431 |
1432 ;; t if point is at a tag line that matches TAG as a word. | |
1433 ;; point should be just after a string that matches TAG. | |
1434 (defun tag-word-match-p (tag) | |
1435 (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
|
1436 (save-excursion (backward-char (length tag)) |
799 | 1437 (looking-at "\\b")))) |
1438 | |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1439 (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
|
1440 (and (looking-at ",") |
15775
2f589e0f2c7a
(tag-exact-file-name-match-p): Fix previous change.
Erik Naggum <erik@naggum.no>
parents:
15770
diff
changeset
|
1441 (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
|
1442 (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
|
1443 |
799 | 1444 ;; t if point is in a tag line with a tag containing TAG as a substring. |
1445 (defun tag-any-match-p (tag) | |
1446 (looking-at ".*\177")) | |
1447 | |
1448 ;; t if point is at a tag line that matches RE as a regexp. | |
1449 (defun tag-re-match-p (re) | |
1450 (save-excursion | |
1451 (beginning-of-line) | |
1452 (let ((bol (point))) | |
1453 (and (search-forward "\177" (save-excursion (end-of-line) (point)) t) | |
1454 (re-search-backward re bol t))))) | |
1455 | |
23415
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1456 (defcustom tags-loop-revert-buffers nil |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1457 "*Non-nil means tags-scanning loops should offer to reread changed files. |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1458 These loops normally read each file into Emacs, but when a file |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1459 is already visited, they use the existing buffer. |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1460 When this flag is non-nil, they offer to revert the existing buffer |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1461 in the case where the file has changed since you visited it." |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1462 :type 'boolean |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1463 :group 'etags) |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1464 |
799 | 1465 ;;;###autoload |
1466 (defun next-file (&optional initialize novisit) | |
1467 "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
|
1468 |
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
|
1469 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
|
1470 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
|
1471 neither nil nor t, it is evalled to initialize the list of files. |
799 | 1472 |
1473 Non-nil second argument NOVISIT means use a temporary buffer | |
1474 to save time and avoid uninteresting warnings. | |
1475 | |
1476 Value is nil if the file was already visited; | |
1477 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
|
1478 ;; 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
|
1479 (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
|
1480 (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
|
1481 ;; 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
|
1482 ) |
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
|
1483 ((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
|
1484 ;; 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
|
1485 (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
|
1486 ;; 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
|
1487 (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
|
1488 ;; 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
|
1489 ;; 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
|
1490 (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
|
1491 ;; 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
|
1492 ;; 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
|
1493 (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
|
1494 ;; 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
|
1495 ;; 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
|
1496 (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
|
1497 (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
|
1498 (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
|
1499 ;; 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
|
1500 ;; 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
|
1501 (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
|
1502 (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
|
1503 (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
|
1504 (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
|
1505 (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
|
1506 ;; 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
|
1507 (setq next-file-list (eval initialize)))) |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1508 (unless next-file-list |
9631
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1509 (and novisit |
a5bd0b6b080e
(next-file): Initialize next-file-list all at once from all tables.
Roland McGrath <roland@gnu.org>
parents:
9579
diff
changeset
|
1510 (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
|
1511 (kill-buffer " *next-file*")) |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1512 (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
|
1513 (let* ((next (car next-file-list)) |
23415
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1514 (buffer (get-file-buffer next)) |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1515 (new (not 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
|
1516 ;; 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
|
1517 ;; 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
|
1518 (setq next-file-list (cdr next-file-list)) |
23415
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1519 ;; Optionally offer to revert buffers |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1520 ;; if the files have changed on disk. |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1521 (and buffer tags-loop-revert-buffers |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1522 (not (verify-visited-file-modtime buffer)) |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1523 (with-current-buffer buffer |
b511a32c37fd
(tags-loop-revert-buffers): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
23377
diff
changeset
|
1524 (revert-buffer t))) |
799 | 1525 (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
|
1526 (set-buffer (find-file-noselect next novisit)) |
799 | 1527 ;; Like find-file, but avoids random warning messages. |
1528 (set-buffer (get-buffer-create " *next-file*")) | |
1529 (kill-all-local-variables) | |
1530 (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
|
1531 (setq new next) |
799 | 1532 (insert-file-contents new nil)) |
1533 new)) | |
342 | 1534 |
799 | 1535 (defvar tags-loop-operate nil |
1536 "Form for `tags-loop-continue' to eval to change one file.") | |
1537 | |
1808
60685747963c
(tags-loop-scan): Set default value to an error form.
Roland McGrath <roland@gnu.org>
parents:
1807
diff
changeset
|
1538 (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
|
1539 '(error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1540 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1541 "No \\[tags-search] or \\[tags-query-replace] in progress")) |
799 | 1542 "Form for `tags-loop-continue' to eval to scan one file. |
1543 If it returns non-nil, this file needs processing by evalling | |
1544 \`tags-loop-operate'. Otherwise, move on to the next file.") | |
342 | 1545 |
28243
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1546 (defun tags-loop-eval (form) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1547 "Evaluate FORM and return its result. |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1548 Bind `case-fold-search' during the evaluation, depending on the value of |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1549 `tags-case-fold-search'." |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1550 (let ((case-fold-search (if (memq tags-case-fold-search '(t nil)) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1551 tags-case-fold-search |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1552 case-fold-search))) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1553 (eval form))) |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1554 |
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1555 |
360 | 1556 ;;;###autoload |
342 | 1557 (defun tags-loop-continue (&optional first-time) |
1558 "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
|
1559 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
|
1560 argument is passed to `next-file', which see). |
11792
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1561 |
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1562 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
|
1563 `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
|
1564 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
|
1565 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
|
1566 nil, we exit; otherwise we scan the next file." |
342 | 1567 (interactive) |
799 | 1568 (let (new |
25438
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1569 ;; Non-nil means we have finished one file |
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1570 ;; and should not scan it again. |
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1571 file-finished |
799 | 1572 (messaged nil)) |
1573 (while | |
1574 (progn | |
1575 ;; Scan files quickly for the first or next interesting one. | |
25438
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1576 (while (or first-time file-finished |
799 | 1577 (save-restriction |
1578 (widen) | |
28243
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1579 (not (tags-loop-eval tags-loop-scan)))) |
25438
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1580 (setq file-finished nil) |
799 | 1581 (setq new (next-file first-time t)) |
1582 ;; If NEW is non-nil, we got a temp buffer, | |
1583 ;; and NEW is the file name. | |
1584 (if (or messaged | |
1585 (and (not first-time) | |
1586 (> baud-rate search-slow-speed) | |
1587 (setq messaged t))) | |
1588 (message "Scanning file %s..." (or new buffer-file-name))) | |
1589 (setq first-time nil) | |
1590 (goto-char (point-min))) | |
1591 | |
1592 ;; If we visited it in a temp buffer, visit it now for real. | |
1593 (if new | |
1594 (let ((pos (point))) | |
1595 (erase-buffer) | |
1596 (set-buffer (find-file-noselect new)) | |
11792
4284a0c7971a
(tags-loop-continue): Doc fix.
Roland McGrath <roland@gnu.org>
parents:
11482
diff
changeset
|
1597 (setq new nil) ;No longer in a temp buffer. |
799 | 1598 (widen) |
1599 (goto-char pos))) | |
1600 | |
1601 (switch-to-buffer (current-buffer)) | |
1602 | |
1603 ;; Now operate on the file. | |
1604 ;; If value is non-nil, continue to scan the next file. | |
28243
9669a6691caa
(tags-case-fold-search): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
26720
diff
changeset
|
1605 (tags-loop-eval tags-loop-operate)) |
25438
4868ac7f6a3f
(tags-loop-continue): After tags-loop-operate returns, force skip to next file.
Richard M. Stallman <rms@gnu.org>
parents:
25278
diff
changeset
|
1606 (setq file-finished t)) |
799 | 1607 (and messaged |
1608 (null tags-loop-operate) | |
1609 (message "Scanning file %s...found" buffer-file-name)))) | |
1610 ;;;###autoload (define-key esc-map "," 'tags-loop-continue) | |
342 | 1611 |
360 | 1612 ;;;###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
|
1613 (defun tags-search (regexp &optional file-list-form) |
799 | 1614 "Search through all files listed in tags table for match for REGEXP. |
342 | 1615 Stops when a match is found. |
1616 To continue searching for next match, use command \\[tags-loop-continue]. | |
1617 | |
799 | 1618 See documentation of variable `tags-file-name'." |
342 | 1619 (interactive "sTags search (regexp): ") |
1620 (if (and (equal regexp "") | |
799 | 1621 (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
|
1622 (null tags-loop-operate)) |
799 | 1623 ;; Continue last tags-search as if by M-,. |
342 | 1624 (tags-loop-continue nil) |
799 | 1625 (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
|
1626 (list 're-search-forward (list 'quote regexp) nil t) |
799 | 1627 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
|
1628 (tags-loop-continue (or file-list-form t)))) |
342 | 1629 |
360 | 1630 ;;;###autoload |
28704
351e38e6b866
(tags-query-replace): Add parameters START
Gerd Moellmann <gerd@gnu.org>
parents:
28243
diff
changeset
|
1631 (defun tags-query-replace (from to &optional delimited start end file-list-form) |
799 | 1632 "Query-replace-regexp FROM with TO through all files listed in tags table. |
342 | 1633 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
799 | 1634 If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace |
342 | 1635 with the command \\[tags-loop-continue]. |
1636 | |
799 | 1637 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
|
1638 (interactive (query-replace-read-args "Tags query replace (regexp)" t)) |
804 | 1639 (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
|
1640 (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
|
1641 (list 'quote from) nil t) |
804 | 1642 ;; When we find a match, move back |
1643 ;; to the beginning of it so perform-replace | |
1644 ;; will see it. | |
1645 '(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
|
1646 tags-loop-operate (list 'perform-replace |
28704
351e38e6b866
(tags-query-replace): Add parameters START
Gerd Moellmann <gerd@gnu.org>
parents:
28243
diff
changeset
|
1647 (list 'quote from) (list 'quote to) nil nil |
11482
d81023e5f033
(tags-search, tags-query-replace): Put (quote ...) around args inserted
Roland McGrath <roland@gnu.org>
parents:
11328
diff
changeset
|
1648 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
|
1649 (tags-loop-continue (or file-list-form t))) |
799 | 1650 |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1651 (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
|
1652 (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
|
1653 ;; 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
|
1654 (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
|
1655 (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
|
1656 (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
|
1657 (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
|
1658 predicate) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1659 (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
|
1660 predicate)))) |
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1661 |
799 | 1662 ;;;###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
|
1663 (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
|
1664 "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
|
1665 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
|
1666 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
|
1667 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
|
1668 (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
|
1669 '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
|
1670 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
|
1671 (with-output-to-temp-buffer "*Tags List*" |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1672 (princ "Tags in file `") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1673 (tags-with-face 'highlight (princ file)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1674 (princ "':\n\n") |
13731
f9bffca29486
Fix completely broken changes of 4 Feb 95 by brat@htilbom.ernet.in,
Roland McGrath <roland@gnu.org>
parents:
13576
diff
changeset
|
1675 (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
|
1676 (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
|
1677 (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
|
1678 (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
|
1679 (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
|
1680 (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
|
1681 (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
|
1682 (or gotany |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1683 (error "File %s not in current tags tables" file))))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1684 (with-current-buffer "*Tags List*" |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1685 (setq buffer-read-only t) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1686 (apropos-mode))) |
342 | 1687 |
360 | 1688 ;;;###autoload |
799 | 1689 (defun tags-apropos (regexp) |
1690 "Display list of all tags in tags table REGEXP matches." | |
1691 (interactive "sTags apropos (regexp): ") | |
342 | 1692 (with-output-to-temp-buffer "*Tags List*" |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1693 (princ "Click mouse-2 to follow tags.\n\nTags matching regexp `") |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1694 (tags-with-face 'highlight (princ regexp)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1695 (princ "':\n\n") |
342 | 1696 (save-excursion |
1149 | 1697 (let ((first-time t)) |
1698 (while (visit-tags-table-buffer (not first-time)) | |
1699 (setq first-time nil) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1700 (funcall tags-apropos-function regexp)))) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1701 (etags-tags-apropos-additional regexp)) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1702 (with-current-buffer "*Tags List*" |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1703 (setq buffer-read-only t) |
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1704 (apropos-mode))) |
799 | 1705 |
1706 ;;; XXX Kludge interface. | |
342 | 1707 |
799 | 1708 ;; XXX If a file is in multiple tables, selection may get the wrong one. |
804 | 1709 ;;;###autoload |
799 | 1710 (defun select-tags-table () |
1711 "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
|
1712 The list of tags tables to select from is stored in `tags-table-set-list'; |
799 | 1713 see the doc of that variable if you want to add names to the list." |
1714 (interactive) | |
1715 (pop-to-buffer "*Tags Table List*") | |
1716 (setq buffer-read-only nil) | |
1717 (erase-buffer) | |
1718 (let ((set-list tags-table-set-list) | |
1719 (desired-point nil)) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1720 (when tags-table-list |
799 | 1721 (setq desired-point (point-marker)) |
1722 (princ tags-table-list (current-buffer)) | |
1723 (insert "\C-m") | |
1724 (prin1 (car tags-table-list) (current-buffer)) ;invisible | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1725 (insert "\n")) |
799 | 1726 (while set-list |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1727 (unless (eq (car set-list) tags-table-list) |
799 | 1728 (princ (car set-list) (current-buffer)) |
1729 (insert "\C-m") | |
1730 (prin1 (car (car set-list)) (current-buffer)) ;invisible | |
1731 (insert "\n")) | |
1732 (setq set-list (cdr set-list))) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1733 (when tags-file-name |
799 | 1734 (or desired-point |
1735 (setq desired-point (point-marker))) | |
1736 (insert tags-file-name "\C-m") | |
1737 (prin1 tags-file-name (current-buffer)) ;invisible | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1738 (insert "\n")) |
799 | 1739 (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
|
1740 (apply 'nconc (cons (copy-sequence tags-table-list) |
799 | 1741 (mapcar 'copy-sequence |
1742 tags-table-set-list))))) | |
1743 (while set-list | |
1744 (insert (car set-list) "\C-m") | |
1745 (prin1 (car set-list) (current-buffer)) ;invisible | |
1746 (insert "\n") | |
1747 (setq set-list (delete (car set-list) set-list))) | |
1748 (goto-char 1) | |
1749 (insert-before-markers | |
1750 "Type `t' to select a tags table or set of tags tables:\n\n") | |
1751 (if desired-point | |
1752 (goto-char desired-point)) | |
1753 (set-window-start (selected-window) 1 t)) | |
1754 (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
|
1755 (select-tags-table-mode)) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1756 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1757 (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
|
1758 (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
|
1759 (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
|
1760 (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
|
1761 (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
|
1762 (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
|
1763 (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
|
1764 (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
|
1765 (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
|
1766 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1767 (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
|
1768 "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
|
1769 |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1770 \\{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
|
1771 (interactive) |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1772 (kill-all-local-variables) |
799 | 1773 (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
|
1774 major-mode 'select-tags-table-mode |
799 | 1775 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
|
1776 (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
|
1777 (setq selective-display t |
202339c81fa4
(select-tags-table-mode): New function, a major mode.
Richard M. Stallman <rms@gnu.org>
parents:
7287
diff
changeset
|
1778 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
|
1779 |
799 | 1780 (defun select-tags-table-select () |
1781 "Select the tags table named on this line." | |
1782 (interactive) | |
1783 (search-forward "\C-m") | |
1784 (let ((name (read (current-buffer)))) | |
1785 (visit-tags-table name) | |
1786 (select-tags-table-quit) | |
1787 (message "Tags table now %s" name))) | |
1788 | |
1789 (defun select-tags-table-quit () | |
1790 "Kill the buffer and delete the selected window." | |
1791 (interactive) | |
21097
eb3dc7ea93c2
(select-tags-table-quit): Use quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
20836
diff
changeset
|
1792 (quit-window t (selected-window))) |
799 | 1793 |
16281 | 1794 ;;; Note, there is another definition of this function in bindings.el. |
360 | 1795 ;;;###autoload |
799 | 1796 (defun complete-tag () |
1797 "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
|
1798 Completes to the set of names listed in the current tags table. |
799 | 1799 The string to complete is chosen in the same way as the default |
981 | 1800 for \\[find-tag] (which see)." |
799 | 1801 (interactive) |
981 | 1802 (or tags-table-list |
1803 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
|
1804 (error "%s" |
071f9717597f
(visit-tags-table-buffer, tags-loop-scan, complete-tag): Fix error format
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1805 (substitute-command-keys |
18623
fc78e7f26a64
(next-file, tags-loop-scan): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
18324
diff
changeset
|
1806 "No tags table loaded; try \\[visit-tags-table]"))) |
799 | 1807 (let ((pattern (funcall (or find-tag-default-function |
1808 (get major-mode 'find-tag-default-function) | |
1809 'find-tag-default))) | |
1810 beg | |
1811 completion) | |
1812 (or pattern | |
1813 (error "Nothing to complete")) | |
1814 (search-backward pattern) | |
1815 (setq beg (point)) | |
1816 (forward-char (length pattern)) | |
26720
32e893b03ad2
(etags-tags-completion-table): Modified the
Gerd Moellmann <gerd@gnu.org>
parents:
25438
diff
changeset
|
1817 (setq completion (tags-complete-tag pattern nil nil)) |
799 | 1818 (cond ((eq completion t)) |
1819 ((null completion) | |
1820 (message "Can't find completion for \"%s\"" pattern) | |
1821 (ding)) | |
1822 ((not (string= pattern completion)) | |
1823 (delete-region beg (point)) | |
1824 (insert completion)) | |
1825 (t | |
1826 (message "Making completion list...") | |
7843
38d89820ab47
(complete-tag): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7645
diff
changeset
|
1827 (with-output-to-temp-buffer "*Completions*" |
799 | 1828 (display-completion-list |
1829 (all-completions pattern 'tags-complete-tag nil))) | |
1830 (message "Making completion list...%s" "done"))))) | |
29080 | 1831 |
1832 (dolist (x '("^No tags table in use; use .* to select one$" | |
1833 "^There is no default tag$" | |
1834 "^No previous tag locations$" | |
1835 "^File .* is not a valid tags table$" | |
1836 "^No \\(more \\|\\)tags \\(matching\\|containing\\) " | |
1837 "^Rerun etags: `.*' not found in " | |
1838 "^All files processed$" | |
1839 "^No .* or .* in progress$" | |
1840 "^File .* not in current tags tables$" | |
1841 "^No tags table loaded" | |
1842 "^Nothing to complete$")) | |
1843 (add-to-list 'debug-ignored-errors x)) | |
799 | 1844 |
584 | 1845 (provide 'etags) |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1846 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
1847 ;;; etags.el ends here |