diff options
| author | Eli Zaretskii | 2009-10-05 11:42:18 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-10-05 11:42:18 +0000 |
| commit | a7a8618bcd6b8ef8c362cebaa45e5a57b8f20cd4 (patch) | |
| tree | 9e6d726a8093e745969f80c05fc334f10bfce56c | |
| parent | 8842cd9bbb3088102dc9c76a594df09d4113d603 (diff) | |
| download | emacs-a7a8618bcd6b8ef8c362cebaa45e5a57b8f20cd4.tar.gz emacs-a7a8618bcd6b8ef8c362cebaa45e5a57b8f20cd4.zip | |
(eval-expression): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eca762b7085..e0e95db2b88 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-10-05 Eli Zaretskii <eliz@gnu.org> | 1 | 2009-10-05 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * simple.el (eval-expression): Doc fix. | ||
| 4 | |||
| 3 | * progmodes/cwarn.el (cwarn-mode): Doc fix. | 5 | * progmodes/cwarn.el (cwarn-mode): Doc fix. |
| 4 | 6 | ||
| 5 | 2009-10-05 Michael Albinus <michael.albinus@gmx.de> | 7 | 2009-10-05 Michael Albinus <michael.albinus@gmx.de> |
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." | |||
| 1110 | &optional eval-expression-insert-value) | 1110 | &optional eval-expression-insert-value) |
| 1111 | "Evaluate EVAL-EXPRESSION-ARG and print value in the echo area. | 1111 | "Evaluate EVAL-EXPRESSION-ARG and print value in the echo area. |
| 1112 | Value is also consed on to front of the variable `values'. | 1112 | Value is also consed on to front of the variable `values'. |
| 1113 | Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means | 1113 | Optional argument EVAL-EXPRESSION-INSERT-VALUE non-nil (interactively, |
| 1114 | insert the result into the current buffer instead of printing it in | 1114 | with prefix argument) means insert the result into the current buffer |
| 1115 | the echo area. Truncates long output according to the value of the | 1115 | instead of printing it in the echo area. Truncates long output |
| 1116 | variables `eval-expression-print-length' and `eval-expression-print-level'. | 1116 | according to the value of the variables `eval-expression-print-length' |
| 1117 | and `eval-expression-print-level'. | ||
| 1117 | 1118 | ||
| 1118 | If `eval-expression-debug-on-error' is non-nil, which is the default, | 1119 | If `eval-expression-debug-on-error' is non-nil, which is the default, |
| 1119 | this command arranges for all errors to enter the debugger." | 1120 | this command arranges for all errors to enter the debugger." |