Function: semantic-edits-incremental-fail
semantic-edits-incremental-fail is a byte-compiled function defined in
edit.el.gz.
Signature
(semantic-edits-incremental-fail)
Documentation
When the incremental parser fails, we mark that we need a full reparse.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
(defsubst semantic-edits-incremental-fail ()
"When the incremental parser fails, we mark that we need a full reparse."
;;(debug)
(semantic-parse-tree-set-needs-rebuild)
(when semantic-edits-verbose-flag
(message "Force full reparse (%s)"
(buffer-name (current-buffer))))
(run-hooks 'semantic-edits-incremental-reparse-failed-hook))