diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/etags.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1c360d295f6..ddb375d01cd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-07-10 John Paul Wallington <jpw@gnu.org> + + * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie; + this function can be called from `add-completions-from-tags-table'. + 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk> * calendar/timeclock.el (timeclock-use-display-time) diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 87e4624eb5f..8860cc3ceb0 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -518,6 +518,7 @@ Returns non-nil iff it is a valid table." ;; Set tags-file-name to the name from the list. It is already expanded. (setq tags-file-name (car tags-table-list-pointer)))) +;;;###autoload (defun visit-tags-table-buffer (&optional cont) "Select the buffer containing the current tags table. If optional arg is a string, visit that file as a tags table. |