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