Function: semantic-debug-step

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

Signature

(semantic-debug-step)

Documentation

Perform one parser operation.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/debug.el.gz
(defun semantic-debug-step ()
  "Perform one parser operation."
  (interactive)
  (let ((parser semantic-debug-current-parser))
    (semantic-debug-parser-step parser)
    (exit-recursive-edit)
    )
  )