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

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

Signature

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

Documentation

Return a string message describing the current context.

This function will disable loading of previously unloaded files by semanticdb as a time-saving measure.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defun semantic-idle-summary-current-symbol-info-default ()
  "Return a string message describing the current context.
This function will disable loading of previously unloaded files
by semanticdb as a time-saving measure."
  (semanticdb-without-unloaded-file-searches
      (save-excursion
	;; use whichever has success first.
	(or
	 (semantic-idle-summary-current-symbol-keyword)

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

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