Function: semantic-show-parser-state-auto-marker

semantic-show-parser-state-auto-marker is a byte-compiled function defined in util-modes.el.gz.

Signature

(semantic-show-parser-state-auto-marker)

Documentation

Hook function run before an autoparse.

Set up semantic-show-parser-state-marker to show @ to indicate a parse in progress.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
(defun semantic-show-parser-state-auto-marker ()
  "Hook function run before an autoparse.
Set up `semantic-show-parser-state-marker' to show `@'
to indicate a parse in progress."
  (unless (semantic-parse-tree-up-to-date-p)
    (setq semantic-show-parser-state-string "@")
    ;; For testing.
    ;;(sit-for 1)
    ))