Function: semantic-tag-include-filename

semantic-tag-include-filename is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-include-filename TAG)

Documentation

Return a filename representation of TAG.

The default action is to return the semantic-tag-name. Some languages do not use full filenames in their include statements. Override this method to translate the code representation into a filename. (A relative filename if necessary.)

See semantic-dependency-tag-file to expand an include tag to a full file name.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(define-overloadable-function semantic-tag-include-filename (tag)
  "Return a filename representation of TAG.
The default action is to return the `semantic-tag-name'.
Some languages do not use full filenames in their include statements.
Override this method to translate the code representation
into a filename.  (A relative filename if necessary.)

See `semantic-dependency-tag-file' to expand an include
tag to a full file name.")