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