Function: semantic--tag-get-property
semantic--tag-get-property is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic--tag-get-property TAG PROPERTY)
Documentation
From TAG, extract the value of PROPERTY.
Return the value found, or nil if PROPERTY is not one of the properties of TAG. That function is for internal use only.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic--tag-get-property (tag property)
"From TAG, extract the value of PROPERTY.
Return the value found, or nil if PROPERTY is not one of the
properties of TAG.
That function is for internal use only."
(plist-get (semantic-tag-properties tag) property))