Function: bs-visit-tags-table

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

Signature

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