Function: semantic-idle-summary-current-symbol-info-brutish

semantic-idle-summary-current-symbol-info-brutish is a byte-compiled function defined in idle.el.gz.

Signature

(semantic-idle-summary-current-symbol-info-brutish)

Documentation

Return a string message describing the current context.

Gets a symbol with semantic-ctxt-current-thing and then tries to find it with a deep targeted search.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-summary-current-symbol-info-brutish ()
  "Return a string message describing the current context.
Gets a symbol with `semantic-ctxt-current-thing' and then
tries to find it with a deep targeted search."
  ;; Try the current "thing".
  (let ((sym (car (semantic-ctxt-current-thing))))
    (when sym
      (semantic-idle-summary-find-current-symbol-tag sym))))