annotate lisp/progmodes/etags.el @ 7019:74edb669a7e9

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