aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorEli Zaretskii2018-07-06 12:31:51 +0300
committerEli Zaretskii2018-07-06 12:31:51 +0300
commit4abf94fa3bfc9d03423c80b7ceab82905a4e3baa (patch)
tree58248d762a8c701f85247b0641efc3c22043e636 /lisp/progmodes
parent6cfc7a7b1bc3989e6d2cc271222ff7ce4eb23b5e (diff)
downloademacs-4abf94fa3bfc9d03423c80b7ceab82905a4e3baa.tar.gz
emacs-4abf94fa3bfc9d03423c80b7ceab82905a4e3baa.zip
Clarify and improve doc strings of 'eval-last-sexp' and friends
* lisp/simple.el (eval-expression, eval-expression-print-format): * lisp/progmodes/elisp-mode.el (eval-last-sexp): Doc fixes. (Bug#32064)
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/elisp-mode.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index 8fe6ef0550b..91d05ce6983 100644
--- a/lisp/progmodes/elisp-mode.el
+++ b/lisp/progmodes/elisp-mode.el
@@ -1189,11 +1189,11 @@ current buffer.
1189Normally, this function truncates long output according to the 1189Normally, this function truncates long output according to the
1190value of the variables `eval-expression-print-length' and 1190value of the variables `eval-expression-print-length' and
1191`eval-expression-print-level'. With a prefix argument of zero, 1191`eval-expression-print-level'. With a prefix argument of zero,
1192however, there is no such truncation. Such a prefix argument 1192however, there is no such truncation.
1193also causes integers to be printed in several additional formats 1193Integer values are printed in several formats (decimal, octal,
1194\(octal, hexadecimal, and character when the prefix argument is 1194and hexadecimal). When the prefix argument is -1 or the value
1195-1 or the integer is `eval-expression-print-maximum-character' or 1195doesn't exceed `eval-expression-print-maximum-character', an
1196less). 1196integer value is also printed as a character of that codepoint.
1197 1197
1198If `eval-expression-debug-on-error' is non-nil, which is the default, 1198If `eval-expression-debug-on-error' is non-nil, which is the default,
1199this command arranges for all errors to enter the debugger." 1199this command arranges for all errors to enter the debugger."