diff options
| author | Eli Zaretskii | 2018-07-06 12:31:51 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2018-07-06 12:31:51 +0300 |
| commit | 4abf94fa3bfc9d03423c80b7ceab82905a4e3baa (patch) | |
| tree | 58248d762a8c701f85247b0641efc3c22043e636 /lisp/progmodes | |
| parent | 6cfc7a7b1bc3989e6d2cc271222ff7ce4eb23b5e (diff) | |
| download | emacs-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.el | 10 |
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. | |||
| 1189 | Normally, this function truncates long output according to the | 1189 | Normally, this function truncates long output according to the |
| 1190 | value of the variables `eval-expression-print-length' and | 1190 | value 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, |
| 1192 | however, there is no such truncation. Such a prefix argument | 1192 | however, there is no such truncation. |
| 1193 | also causes integers to be printed in several additional formats | 1193 | Integer values are printed in several formats (decimal, octal, |
| 1194 | \(octal, hexadecimal, and character when the prefix argument is | 1194 | and hexadecimal). When the prefix argument is -1 or the value |
| 1195 | -1 or the integer is `eval-expression-print-maximum-character' or | 1195 | doesn't exceed `eval-expression-print-maximum-character', an |
| 1196 | less). | 1196 | integer value is also printed as a character of that codepoint. |
| 1197 | 1197 | ||
| 1198 | If `eval-expression-debug-on-error' is non-nil, which is the default, | 1198 | If `eval-expression-debug-on-error' is non-nil, which is the default, |
| 1199 | this command arranges for all errors to enter the debugger." | 1199 | this command arranges for all errors to enter the debugger." |