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* ((buf (bs--current-buffer))
(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")))))