Function: semantic-describe-tag
semantic-describe-tag is an interactive and byte-compiled function
defined in util.el.gz.
Signature
(semantic-describe-tag &optional TAG)
Documentation
Describe TAG in the minibuffer.
If TAG is nil, describe the tag under the cursor.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/util.el.gz
;;; Interactive Functions for
;;
(defun semantic-describe-tag (&optional tag)
"Describe TAG in the minibuffer.
If TAG is nil, describe the tag under the cursor."
(interactive)
(if (not tag) (setq tag (semantic-current-tag)))
(semantic-fetch-tags)
(if tag (message (semantic-format-tag-summarize tag))))