Function: semantic-foreign-tag-p

semantic-foreign-tag-p is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-foreign-tag-p TAG)

Documentation

Return non-nil if TAG is a foreign tag.

That is, a tag unlinked from the originating buffer, which carries the originating buffer file name, and major mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-foreign-tag-p (tag)
  "Return non-nil if TAG is a foreign tag.
That is, a tag unlinked from the originating buffer, which carries the
originating buffer file name, and major mode."
  (and (semantic-tag-p tag)
       (semantic--tag-get-property tag :foreign-flag)))