Function: ibuffer-visit-tags-table

ibuffer-visit-tags-table is an interactive and byte-compiled function defined in ibuffer.el.gz.

Signature

(ibuffer-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/ibuffer.el.gz
(defun ibuffer-visit-tags-table ()
  "Visit the tags table in the buffer on this line.  See `visit-tags-table'."
  (interactive)
  (let ((file (buffer-file-name (ibuffer-current-buffer t))))
    (if file
	(visit-tags-table file)
      (error "Specified buffer has no file"))))