Function: semantic-tag-include-filename-emacs-lisp-mode

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

Signature

(semantic-tag-include-filename-emacs-lisp-mode TAG)

Documentation

Return the name of the tag with .el appended.

If there is a detail, prepend that directory. Override semantic-tag-include-filename in emacs-lisp-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/el.el.gz
;;; Tag Features
;;
(define-mode-local-override semantic-tag-include-filename emacs-lisp-mode
  (tag)
  "Return the name of the tag with .el appended.
If there is a detail, prepend that directory."
  (let ((name (semantic-tag-name tag))
	(detail (semantic-tag-get-attribute tag :directory)))
    (concat (expand-file-name name detail) ".el")))