Function: semantic-parse-changes-failed

semantic-parse-changes-failed is a byte-compiled function defined in edit.el.gz.

Signature

(semantic-parse-changes-failed &rest ARGS)

Documentation

Signal that Semantic failed to parse changes.

That is, display a message by passing all ARGS to format-message, then throw a semantic-parse-changes-failed exception with value t.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
;;; Default Incremental Parser
;;
;; Logic about how to group changes for effective reparsing and splicing.

(defun semantic-parse-changes-failed (&rest args)
  "Signal that Semantic failed to parse changes.
That is, display a message by passing all ARGS to `format-message', then throw
a `semantic-parse-changes-failed' exception with value t."
  (when semantic-edits-verbose-flag
    (message "Semantic parse changes failed: %S"
	     (apply #'format-message args)))
  (throw 'semantic-parse-changes-failed t))