Function: semantic-current-tag-parent
semantic-current-tag-parent is a byte-compiled function defined in
find.el.gz.
Signature
(semantic-current-tag-parent)
Documentation
Return the current tags parent in the current buffer.
A tag's parent would be a containing structure, such as a type containing a field. Return nil if there is no parent.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
;;;###autoload
(defun semantic-current-tag-parent ()
"Return the current tags parent in the current buffer.
A tag's parent would be a containing structure, such as a type
containing a field. Return nil if there is no parent."
(car (cdr (nreverse (semantic-find-tag-by-overlay)))))