Function: edebug-all-forms

edebug-all-forms is an autoloaded, interactive and byte-compiled function defined in edebug.el.gz.

Signature

(edebug-all-forms)

Documentation

Toggle edebugging of all forms.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;;;###autoload
(defun edebug-all-forms ()
  "Toggle edebugging of all forms."
  (interactive)
  (setq edebug-all-forms (not edebug-all-forms))
  (message "Edebugging all forms is %s."
	   (if edebug-all-forms "on" "off")))