Function: semantic-tag-include-system-p
semantic-tag-include-system-p is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-include-system-p TAG)
Documentation
Return non-nil if the include that TAG describes is a system include.
That is the value of the attribute :system-flag.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
;;; Tags of class `include'
;;
(defsubst semantic-tag-include-system-p (tag)
"Return non-nil if the include that TAG describes is a system include.
That is the value of the attribute `:system-flag'."
(semantic-tag-get-attribute tag :system-flag))