Function: semantic-debug-fail-match

semantic-debug-fail-match is an interactive and byte-compiled function defined in debug.el.gz.

Signature

(semantic-debug-fail-match)

Documentation

Artificially fail the current match.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/debug.el.gz
(defun semantic-debug-fail-match ()
  "Artificially fail the current match."
  (interactive)
  (let ((parser semantic-debug-current-parser))
    (semantic-debug-parser-fail parser)
    (exit-recursive-edit)
    )
  )