emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 d5901f3f05e: Improve documentation of 'edebug-print-*' variable


From: Eli Zaretskii
Subject: emacs-29 d5901f3f05e: Improve documentation of 'edebug-print-*' variables
Date: Sat, 16 Mar 2024 06:43:00 -0400 (EDT)

branch: emacs-29
commit d5901f3f05e0aec9bf4b6b4b6ebf27c66c7cee14
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Improve documentation of 'edebug-print-*' variables
    
    * lisp/emacs-lisp/edebug.el (edebug-print-length)
    (edebug-print-level): Fix doc strings and customization labels.
    Suggested by Matt Trzcinski <matt@excalamus.com>.  (Bug#69745)
---
 lisp/emacs-lisp/edebug.el | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 9656bdf03d8..623b1c6a8c9 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -193,11 +193,15 @@ Use this with caution since it is not debugged."
 
 
 (defcustom edebug-print-length 50
-  "If non-nil, default value of `print-length' for printing results in Edebug."
-  :type '(choice integer (const nil)))
+  "Maximum length of list to print before abbreviating, when in Edebug.
+If this is nil, use the value of `print-length' instead."
+  :type '(choice (integer :tag "A number")
+                 (const :tag "Use `print-length'" nil)))
 (defcustom edebug-print-level 50
-  "If non-nil, default value of `print-level' for printing results in Edebug."
-  :type '(choice integer (const nil)))
+  "Maximum depth of list nesting to print before abbreviating, when in Edebug.
+If nil, use the value of `print-level' instead."
+  :type '(choice (integer :tag "A number")
+                 (const :tag "Use `print-level'" nil)))
 (defcustom edebug-print-circle t
   "If non-nil, default value of `print-circle' for printing results in Edebug."
   :type 'boolean)



reply via email to

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