Function: semantic-analyze-pop-to-context
semantic-analyze-pop-to-context is a byte-compiled function defined in
analyze.el.gz.
Signature
(semantic-analyze-pop-to-context CONTEXT)
Documentation
Display CONTEXT in a temporary buffer.
CONTEXT's content is described in semantic-analyze-current-context.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze.el.gz
(defun semantic-analyze-pop-to-context (context)
"Display CONTEXT in a temporary buffer.
CONTEXT's content is described in `semantic-analyze-current-context'."
(semantic-analyze-pulse context)
(with-output-to-temp-buffer "*Semantic Context Analysis*"
(princ "Context Type: ")
(princ (eieio-object-name context))
(princ "\n")
(princ "Bounds: ")
(princ (oref context bounds))
(princ "\n")
(semantic-analyze-show context)
)
(shrink-window-if-larger-than-buffer
(get-buffer-window "*Semantic Context Analysis*"))
)