]> git.eshelyaron.com Git - emacs.git/commitdiff
(edebug-all-forms): Add autoload cookie.
authorRichard M. Stallman <rms@gnu.org>
Thu, 7 May 1998 23:31:26 +0000 (23:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 7 May 1998 23:31:26 +0000 (23:31 +0000)
(edebug-all-defs): Likewise.

lisp/emacs-lisp/edebug.el

index d758a0d1e0a5f3ed11c108f75071ef4c21b7a804..ae111e735baf8661778b196ec8fca531be810b18 100644 (file)
@@ -107,6 +107,11 @@ using but only when you also use Edebug."
   :type 'hook
   :group 'edebug)
 
+;; edebug-all-defs and edebug-all-forms need to be autoloaded
+;; because the byte compiler binds them; as a result, if edebug
+;; is first loaded for a require in a compilation, they will be left unbound.
+
+;;;###autoload
 (defcustom edebug-all-defs nil
   "*If non-nil, evaluation of any defining forms will instrument for Edebug.
 This applies to `eval-defun', `eval-region', `eval-buffer', and
@@ -120,6 +125,11 @@ variable.  You may wish to make it local to each buffer with
   :type 'boolean
   :group 'edebug)
 
+;; edebug-all-defs and edebug-all-forms need to be autoloaded
+;; because the byte compiler binds them; as a result, if edebug
+;; is first loaded for a require in a compilation, they will be left unbound.
+
+;;;###autoload
 (defcustom edebug-all-forms nil
   "*Non-nil evaluation of all forms will instrument for Edebug.
 This doesn't apply to loading or evaluations in the minibuffer.