Function: semantic-tag-external-member-parent-default
semantic-tag-external-member-parent-default is a byte-compiled
function defined in sort.el.gz.
Signature
(semantic-tag-external-member-parent-default TAG)
Documentation
Return the name of TAGs parent only if TAG is not defined in its parent.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/sort.el.gz
(defun semantic-tag-external-member-parent-default (tag)
"Return the name of TAGs parent only if TAG is not defined in its parent."
;; Use only the extra spec because a type has a parent which
;; means something completely different.
(let ((tp (semantic-tag-get-attribute tag :parent)))
(when (stringp tp)
tp)))