diff options
| author | Richard M. Stallman | 2006-04-07 23:30:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-04-07 23:30:42 +0000 |
| commit | b4f739947722ad1f58d96c0f0d83f075368fca98 (patch) | |
| tree | 3979185ff592f92514d83c055c778cac83f47916 | |
| parent | a8d78e0d70ab14c8723eb9b949a9abaef00f5290 (diff) | |
| download | emacs-b4f739947722ad1f58d96c0f0d83f075368fca98.tar.gz emacs-b4f739947722ad1f58d96c0f0d83f075368fca98.zip | |
(eval-expression): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/simple.el | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8fd358c459..a44ace57e3f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2006-04-07 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (eval-expression): Doc fix. | ||
| 4 | |||
| 5 | * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp) | ||
| 6 | (eval-defun): Doc fixes. | ||
| 7 | |||
| 1 | 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de> | 8 | 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 9 | ||
| 3 | * pgg-gpg.el: Revert to revision 1.8 to allow the use of | 10 | * pgg-gpg.el: Revert to revision 1.8 to allow the use of |
diff --git a/lisp/simple.el b/lisp/simple.el index 54ff135442d..0b8ad7e4fb0 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -1050,7 +1050,10 @@ display the result of expression evaluation." | |||
| 1050 | Value is also consed on to front of the variable `values'. | 1050 | Value is also consed on to front of the variable `values'. |
| 1051 | Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means | 1051 | Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means |
| 1052 | insert the result into the current buffer instead of printing it in | 1052 | insert the result into the current buffer instead of printing it in |
| 1053 | the echo area." | 1053 | the echo area. |
| 1054 | |||
| 1055 | If `eval-expression-debug-on-error' is non-nil, which is the default, | ||
| 1056 | this command arranges for all errors to enter the debugger." | ||
| 1054 | (interactive | 1057 | (interactive |
| 1055 | (list (read-from-minibuffer "Eval: " | 1058 | (list (read-from-minibuffer "Eval: " |
| 1056 | nil read-expression-map t | 1059 | nil read-expression-map t |