Function: semantic-ia-sb-show-scope
semantic-ia-sb-show-scope is a byte-compiled function defined in
ia-sb.el.gz.
Signature
(semantic-ia-sb-show-scope SCOPE)
Documentation
Show SCOPE information.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia-sb.el.gz
(defun semantic-ia-sb-show-scope (scope)
"Show SCOPE information."
(let ((localvars (when scope
(oref scope localvar)))
)
(when localvars
(speedbar-insert-separator "Local Variables")
(semantic-ia-sb-string-list localvars
'speedbar-tag-face
;; This is from semantic-sb
'semantic-sb-token-jump))))