Function: semantic-parser-working-message
semantic-parser-working-message is a byte-compiled function defined in
semantic.el.gz.
Signature
(semantic-parser-working-message &optional ARG)
Documentation
Return the message string displayed while parsing.
If optional argument ARG is non-nil it is appended to the message string.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defsubst semantic-parser-working-message (&optional arg)
"Return the message string displayed while parsing.
If optional argument ARG is non-nil it is appended to the message
string."
(concat "Parsing"
(if arg (format " %s" arg))
(if semantic-parser-name (format " (%s)" semantic-parser-name))
"..."))