Function: edebug-before

edebug-before is a byte-compiled function defined in edebug.el.gz.

Signature

(edebug-before BEFORE-INDEX)

Documentation

Function called by Edebug before a form is evaluated.

See edebug-behavior-alist for other implementations. This version of edebug-before gets called when edebug is not yet set up. edebug-enter binds the function cell to a real function when edebug becomes active.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-before (_before-index)
  "Function called by Edebug before a form is evaluated.
See `edebug-behavior-alist' for other implementations.  This
version of `edebug-before' gets called when edebug is not yet set
up.  `edebug-enter' binds the function cell to a real function
when edebug becomes active."
  (edebug-b/a-error 'edebug-before))