aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-07 23:31:26 +0000
committerRichard M. Stallman1998-05-07 23:31:26 +0000
commit36f8d564cd6f81211a792d3d64aa4252d67dda81 (patch)
tree3595f22c4a8be8620313a2e0654a0e04785779b3
parenta9e5664e490596882d0fa2fc946a216c70655a91 (diff)
downloademacs-36f8d564cd6f81211a792d3d64aa4252d67dda81.tar.gz
emacs-36f8d564cd6f81211a792d3d64aa4252d67dda81.zip
(edebug-all-forms): Add autoload cookie.
(edebug-all-defs): Likewise.
-rw-r--r--lisp/emacs-lisp/edebug.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index d758a0d1e0a..ae111e735ba 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -107,6 +107,11 @@ using but only when you also use Edebug."
107 :type 'hook 107 :type 'hook
108 :group 'edebug) 108 :group 'edebug)
109 109
110;; edebug-all-defs and edebug-all-forms need to be autoloaded
111;; because the byte compiler binds them; as a result, if edebug
112;; is first loaded for a require in a compilation, they will be left unbound.
113
114;;;###autoload
110(defcustom edebug-all-defs nil 115(defcustom edebug-all-defs nil
111 "*If non-nil, evaluation of any defining forms will instrument for Edebug. 116 "*If non-nil, evaluation of any defining forms will instrument for Edebug.
112This applies to `eval-defun', `eval-region', `eval-buffer', and 117This 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
120 :type 'boolean 125 :type 'boolean
121 :group 'edebug) 126 :group 'edebug)
122 127
128;; edebug-all-defs and edebug-all-forms need to be autoloaded
129;; because the byte compiler binds them; as a result, if edebug
130;; is first loaded for a require in a compilation, they will be left unbound.
131
132;;;###autoload
123(defcustom edebug-all-forms nil 133(defcustom edebug-all-forms nil
124 "*Non-nil evaluation of all forms will instrument for Edebug. 134 "*Non-nil evaluation of all forms will instrument for Edebug.
125This doesn't apply to loading or evaluations in the minibuffer. 135This doesn't apply to loading or evaluations in the minibuffer.