diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-07-10 16:31:43 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-07-10 16:31:43 +0000 |
commit | 97534f3298f5bf3a1ccee8888ad8f4984442a585 (patch) | |
tree | ea2ff6c5f56dbc0bd486e52b2b6636dbf5d75ee7 | |
parent | 4ee3e788bd24357174ebbb2744e448d2751a051f (diff) | |
download | emacs-97534f3298f5bf3a1ccee8888ad8f4984442a585.tar.gz |
(visit-tags-table-buffer): Add autoload cookie;
this function can be called from `add-completions-from-tags-table'.
-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. |