emacs-diffs
[Top][All Lists]
Advanced

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

master e4a62f8: * lisp/simple.el (eval-expression-print-maximum-characte


From: Juri Linkov
Subject: master e4a62f8: * lisp/simple.el (eval-expression-print-maximum-character): Use choice type.
Date: Sat, 16 Nov 2019 17:10:26 -0500 (EST)

branch: master
commit e4a62f8662b01ad1700565149ba7acbb67a2681a
Author: Juri Linkov <address@hidden>
Commit: Juri Linkov <address@hidden>

    * lisp/simple.el (eval-expression-print-maximum-character): Use choice type.
    
    https://lists.gnu.org/archive/html/emacs-devel/2019-11/msg00433.html
---
 lisp/simple.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index e3ac709..9b4aa23 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1561,7 +1561,9 @@ If nil, don't change the value of `debug-on-error'."
 This affects printing by `eval-expression' (via
 `eval-expression-print-format')."
   :group 'lisp
-  :type 'integer
+  :type `(choice (const :tag "ASCII characters" 127)
+                 (const :tag "All characters" ,(max-char))
+                 (integer :tag "Max codepoint to display as character"))
   :version "26.1")
 
 (defun eval-expression-print-format (value)



reply via email to

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