Function: semantic-tag-named-parent
semantic-tag-named-parent is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-named-parent TAG)
Documentation
Return the parent of TAG.
That is the value of the :parent attribute. If a definition can occur outside an actual parent structure, but refers to that parent by name, then the :parent attribute should be used.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
;;; Generic attributes for tags of any class.
;;
(defsubst semantic-tag-named-parent (tag)
"Return the parent of TAG.
That is the value of the `:parent' attribute.
If a definition can occur outside an actual parent structure, but
refers to that parent by name, then the :parent attribute should be used."
(semantic-tag-get-attribute tag :parent))