Function: semantic-ia-show-summary
semantic-ia-show-summary is an autoloaded, interactive and
byte-compiled function defined in ia.el.gz.
Signature
(semantic-ia-show-summary POINT)
Documentation
Display a summary for the symbol under POINT.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia.el.gz
;;; Summary
;;
;; Like idle-summary-mode, this shows how to get something to
;; show a summary on.
;;;###autoload
(defun semantic-ia-show-summary (point)
"Display a summary for the symbol under POINT."
(interactive "P")
(let* ((ctxt (semantic-analyze-current-context point))
(pf (when ctxt
;; The CTXT is an EIEIO object. The below
;; method will attempt to pick the most interesting
;; tag associated with the current context.
(semantic-analyze-interesting-tag ctxt)))
)
(if pf
(message "%s" (semantic-format-tag-summarize pf nil t))
(message "No summary info available"))))