Function: tags-expand-table-name

tags-expand-table-name is a byte-compiled function defined in etags.el.gz.

Signature

(tags-expand-table-name FILE)

Documentation

Expand tags table name FILE into a complete file name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
(defun tags-expand-table-name (file)
  "Expand tags table name FILE into a complete file name."
  (setq file (expand-file-name file))
  (if (file-directory-p file)
      (expand-file-name "TAGS" file)
    file))