diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-09 11:47:01 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-09 11:47:01 +0200 |
commit | af529f777c965fc347ec0d9144f5b9babce66d08 (patch) | |
tree | d5e054cc69d7a2e86043d8337c017f955bbb1f53 /lisp/emacs-lisp | |
parent | 6b7e93e44488bb5f0efaa363a9d2e52d511959d5 (diff) | |
download | emacs-af529f777c965fc347ec0d9144f5b9babce66d08.tar.gz emacs-af529f777c965fc347ec0d9144f5b9babce66d08.tar.bz2 emacs-af529f777c965fc347ec0d9144f5b9babce66d08.zip |
Reintroduce autoloads for edebug-all-defs/edebug-all-forms
* lisp/emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
Reintroduce ;;;###autoload of these user options that were removed
in bae2cfe63c, because this leads to errors in a common (and
recommended) use case (bug#47516).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index b08ee3c4a17..2aec8197dc9 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -88,6 +88,7 @@ using, but only when you also use Edebug." ;; 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, evaluating defining forms instruments for Edebug. This applies to `eval-defun', `eval-region', `eval-buffer', and @@ -100,6 +101,7 @@ variable. You may wish to make it local to each buffer with `emacs-lisp-mode-hook'." :type 'boolean) +;;;###autoload (defcustom edebug-all-forms nil "Non-nil means evaluation of all forms will instrument for Edebug. This doesn't apply to loading or evaluations in the minibuffer. |