diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-10-05 11:42:18 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-10-05 11:42:18 +0000 |
commit | a7a8618bcd6b8ef8c362cebaa45e5a57b8f20cd4 (patch) | |
tree | 9e6d726a8093e745969f80c05fc334f10bfce56c /lisp/simple.el | |
parent | 8842cd9bbb3088102dc9c76a594df09d4113d603 (diff) | |
download | emacs-a7a8618bcd6b8ef8c362cebaa45e5a57b8f20cd4.tar.gz |
(eval-expression): Doc fix.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index aa8ee15105b..36261d4903c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1110,10 +1110,11 @@ display the result of expression evaluation." &optional eval-expression-insert-value) "Evaluate EVAL-EXPRESSION-ARG and print value in the echo area. Value is also consed on to front of the variable `values'. -Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means -insert the result into the current buffer instead of printing it in -the echo area. Truncates long output according to the value of the -variables `eval-expression-print-length' and `eval-expression-print-level'. +Optional argument EVAL-EXPRESSION-INSERT-VALUE non-nil (interactively, +with prefix argument) means insert the result into the current buffer +instead of printing it in the echo area. Truncates long output +according to the value of the variables `eval-expression-print-length' +and `eval-expression-print-level'. If `eval-expression-debug-on-error' is non-nil, which is the default, this command arranges for all errors to enter the debugger." |