Function: semantic-tag-get-attribute

semantic-tag-get-attribute is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-get-attribute TAG ATTRIBUTE)

Documentation

From TAG, return the value of ATTRIBUTE.

ATTRIBUTE is a symbol whose specification value to get. Return the value found, or nil if ATTRIBUTE is not one of the attributes of TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-get-attribute (tag attribute)
  "From TAG, return the value of ATTRIBUTE.
ATTRIBUTE is a symbol whose specification value to get.
Return the value found, or nil if ATTRIBUTE is not one of the
attributes of TAG."
  (plist-get (semantic-tag-attributes tag) attribute))