Function: semantic-tag-variable-constant-p

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

Signature

(semantic-tag-variable-constant-p TAG)

Documentation

Return non-nil if the variable that TAG describes is a constant.

That is the value of the attribute :constant-flag.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-variable-constant-p (tag)
  "Return non-nil if the variable that TAG describes is a constant.
That is the value of the attribute `:constant-flag'."
  (semantic-tag-get-attribute tag :constant-flag))