Function: file-of-tag

file-of-tag is a byte-compiled function defined in etags.el.gz.

Signature

(file-of-tag &optional RELATIVE)

Documentation

Return the file name of the file whose tags point is within.

Assumes the tags table is the current buffer. If RELATIVE is non-nil, file name returned is relative to tags table file's directory. If RELATIVE is nil, file name returned is complete.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/etags.el.gz
(defun file-of-tag (&optional relative)
  "Return the file name of the file whose tags point is within.
Assumes the tags table is the current buffer.
If RELATIVE is non-nil, file name returned is relative to tags
table file's directory.  If RELATIVE is nil, file name returned
is complete."
  (funcall file-of-tag-function relative))