Variable: edebug-setup-hook
edebug-setup-hook is a customizable variable defined in edebug.el.gz.
Value
nil
Documentation
Functions to call before edebug is used.
Each time it is set to a new value, Edebug will call those functions
once and then reset edebug-setup-hook to nil. You could use this
to load up Edebug specifications associated with a package you are
using, but only when you also use Edebug.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defcustom edebug-setup-hook nil
"Functions to call before edebug is used.
Each time it is set to a new value, Edebug will call those functions
once and then reset `edebug-setup-hook' to nil. You could use this
to load up Edebug specifications associated with a package you are
using, but only when you also use Edebug."
:type 'hook)