Function: tags-table-files
tags-table-files is an autoloaded and byte-compiled function defined
in etags.el.gz.
Signature
(tags-table-files)
Documentation
Return a list of files in the current tags table.
Assumes the tags table is the current buffer. The file names are returned
as they appeared in the etags command that created the table, usually
without directory names.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
;;;###autoload
(defun tags-table-files ()
"Return a list of files in the current tags table.
Assumes the tags table is the current buffer. The file names are returned
as they appeared in the `etags' command that created the table, usually
without directory names."
(or tags-table-files
(setq tags-table-files
(funcall tags-table-files-function))))