Mercurial > emacs
changeset 5174:bb40928e9e47
(tags-add-tables): New variable.
(visit-tags-table-buffer): Use it.
(default-tags-table-function): No longer user var, no longer autoload.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 25 Nov 1993 08:12:35 +0000 |
parents | d48ba25b35bf |
children | 7099e53fe4eb |
files | lisp/progmodes/etags.el |
diffstat | 1 files changed, 12 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/etags.el Thu Nov 25 07:47:14 1993 +0000 +++ b/lisp/progmodes/etags.el Thu Nov 25 08:12:35 1993 +0000 @@ -42,6 +42,11 @@ If you set this variable, do not also set `tags-file-name'. Use the `etags' program to make a tags table file.") +(defvar tags-add-tables nil + "*Non-nil means always add a new tags table to the current list. +This eliminates the need to ask the user whether to add a new tags table +to the current list (as opposed to starting a new list).") + (defvar tags-table-list-pointer nil "Pointer into `tags-table-list' where the current state of searching is. Might instead point into a list of included tags tables. @@ -73,10 +78,10 @@ has a `find-tag-default-function' property (see `put'), that is used. Otherwise, `find-tag-default' is used.") -;;;###autoload (defvar default-tags-table-function nil - "*If non-nil, a function of no arguments to choose a default tags file -for a particular buffer.") + "If non-nil, a function to choose a default tags file for a buffer. +This function receives no arguments and should return the default +tags table file to use for the current buffer.") (defvar tags-location-stack nil "List of markers which are locations visited by \\[find-tag]. @@ -478,13 +483,14 @@ ;; Not found in any existing set. (if (and tags-table-list - (y-or-n-p (concat "Add " tags-file-name - " to current list" - " of tags tables? "))) + (or tags-add-tables + (y-or-n-p (concat "Add to current list" + " of tags tables? ")))) ;; Add it to the current list. (setq tags-table-list (cons tags-file-name tags-table-list)) ;; Make a fresh list, and store the old one. + (message "Starting a new list of tags tables") (or (memq tags-table-list tags-table-set-list) (setq tags-table-set-list (cons tags-table-list tags-table-set-list)))