Function: semantic-tag-attributes

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

Signature

(semantic-tag-attributes TAG)

Documentation

Return the list of public attributes of TAG.

That is a property list: (ATTRIBUTE-1 VALUE-1 ATTRIBUTE-2 VALUE-2...).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-attributes (tag)
  "Return the list of public attributes of TAG.
That is a property list: (ATTRIBUTE-1 VALUE-1 ATTRIBUTE-2 VALUE-2...)."
  (nth 2 tag))