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.

View in manual

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* ((buf (Buffer-menu-buffer t))
         (file (buffer-file-name buf)))
    (cond
     ((not file) (error "Specified buffer has no file"))
     ((and buf (with-current-buffer buf
                 (etags-verify-tags-table)))
      (visit-tags-table file))
     (t (error "Specified buffer is not a tags-table")))))