emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master af529f7 2/2: Reintroduce autoloads for edebug-all-defs/edebug-all


From: Lars Ingebrigtsen
Subject: master af529f7 2/2: Reintroduce autoloads for edebug-all-defs/edebug-all-forms
Date: Sun, 9 May 2021 05:48:08 -0400 (EDT)

branch: master
commit af529f777c965fc347ec0d9144f5b9babce66d08
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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).
---
 lisp/emacs-lisp/edebug.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index b08ee3c..2aec819 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]