]> git.eshelyaron.com Git - emacs.git/commitdiff
Mention the effect of eval-expression-print-length and
authorEli Zaretskii <eliz@gnu.org>
Wed, 25 Jul 2001 16:25:47 +0000 (16:25 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 25 Jul 2001 16:25:47 +0000 (16:25 +0000)
eval-expression-print-level.

etc/NEWS

index 71b5eba19d45fd8a536cb65456002865370af147..7c9d68d6e36c0884202036e5ac15bb32cd4c8aeb 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1140,10 +1140,19 @@ file.
 
 *** The commands to evaluate Lisp expressions, such as C-M-x in Lisp
 modes, C-j in Lisp Interaction mode, and M-:, now bind the variables
-print-level, print-length, and debug-on-error based on the
+print-level, print-length, and debug-on-error based on the new
 customizable variables eval-expression-print-level,
 eval-expression-print-length, and eval-expression-debug-on-error.
 
+The default values for the first two of these variables are 12 and 4
+respectively, which means that `eval-expression' now prints at most
+the first 12 members of a list and at most 4 nesting levels deep (if
+the list is longer or deeper than that, an ellipsis `...'  is
+printed).
+
+The default value of eval-expression-debug-on-error is t, so any error
+during evaluation produces a backtrace.
+
 *** The function `eval-defun' (M-C-x) now loads Edebug and instruments
 code when called with a prefix argument.