Function: Buffer-menu-visit-tags-table
Buffer-menu-visit-tags-table is an interactive and byte-compiled
function defined in buff-menu.el.gz.
Signature
(Buffer-menu-visit-tags-table)
Documentation
Visit the tags table in the buffer on this line. See visit-tags-table.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/buff-menu.el.gz
(defun Buffer-menu-visit-tags-table ()
"Visit the tags table in the buffer on this line. See `visit-tags-table'."
(interactive nil Buffer-menu-mode)
(let ((file (buffer-file-name (Buffer-menu-buffer t))))
(if file
(visit-tags-table file)
(error "Specified buffer has no file"))))