Function: edebug-stop

edebug-stop is an interactive and byte-compiled function defined in edebug.el.gz.

Signature

(edebug-stop)

Documentation

Stop execution and do not continue.

Useful for exiting from trace or continue loop.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-stop ()
  "Stop execution and do not continue.
Useful for exiting from trace or continue loop."
  (interactive)
  (message "Stop"))