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

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

Signature

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

Documentation

Return a string message describing the current context.

Use the semantic analyzer to find the symbol information.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-summary-current-symbol-info-context ()
  "Return a string message describing the current context.
Use the semantic analyzer to find the symbol information."
  (let ((analysis (condition-case nil
		      (semantic-analyze-current-context (point))
		    (error nil))))
    (when analysis
      (semantic-analyze-interesting-tag analysis))))