Function: edebug-go-mode

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

Signature

(edebug-go-mode ARG)

Documentation

Go, evaluating until break.

With prefix ARG, set temporary break at current point and go.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-go-mode (arg)
  "Go, evaluating until break.
With prefix ARG, set temporary break at current point and go."
  (interactive "P")
  (if arg
      (edebug-set-breakpoint t))
  (edebug-set-mode 'go "Go..." "Edebug will go until break."))