Function: semantic-idle-summary-current-symbol-keyword
semantic-idle-summary-current-symbol-keyword is a byte-compiled
function defined in idle.el.gz.
Signature
(semantic-idle-summary-current-symbol-keyword)
Documentation
Return a string message describing the current symbol.
Returns a value only if it is a keyword.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-summary-current-symbol-keyword ()
"Return a string message describing the current symbol.
Returns a value only if it is a keyword."
;; Try the current "thing".
(let ((sym (car (semantic-ctxt-current-thing))))
(if (and sym (semantic-lex-keyword-p sym))
(semantic-lex-keyword-get sym 'summary))))