emacs-diffs
[Top][All Lists]
Advanced

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

master 5561d5de56: Make the edebug-all-defs user option work more reliab


From: Lars Ingebrigtsen
Subject: master 5561d5de56: Make the edebug-all-defs user option work more reliably
Date: Fri, 21 Jan 2022 06:26:43 -0500 (EST)

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

    Make the edebug-all-defs user option work more reliably
    
    * lisp/emacs-lisp/edebug.el (edebug-all-defs): This user option
    has no effect unless edebug is loaded (because that loads the
    advice needed for the commands in question) (bug#53331).
---
 lisp/emacs-lisp/edebug.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index fe97804ec4..1720393b3e 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -98,7 +98,11 @@ This applies to `eval-defun', `eval-region', `eval-buffer', 
and
 You can use the command `edebug-all-defs' to toggle the value of this
 variable.  You may wish to make it local to each buffer with
 \(make-local-variable \\='edebug-all-defs) in your
-`emacs-lisp-mode-hook'."
+`emacs-lisp-mode-hook'.
+
+Note that this user option has no effect unless the edebug
+package has been loaded."
+  :require 'edebug
   :type 'boolean)
 
 ;;;###autoload



reply via email to

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