aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-04-07 23:30:42 +0000
committerRichard M. Stallman2006-04-07 23:30:42 +0000
commitb4f739947722ad1f58d96c0f0d83f075368fca98 (patch)
tree3979185ff592f92514d83c055c778cac83f47916
parenta8d78e0d70ab14c8723eb9b949a9abaef00f5290 (diff)
downloademacs-b4f739947722ad1f58d96c0f0d83f075368fca98.tar.gz
emacs-b4f739947722ad1f58d96c0f0d83f075368fca98.zip
(eval-expression): Doc fix.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/simple.el5
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 @@
12006-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
12006-04-07 Reiner Steib <Reiner.Steib@gmx.de> 82006-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."
1050Value is also consed on to front of the variable `values'. 1050Value is also consed on to front of the variable `values'.
1051Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means 1051Optional argument EVAL-EXPRESSION-INSERT-VALUE, if non-nil, means
1052insert the result into the current buffer instead of printing it in 1052insert the result into the current buffer instead of printing it in
1053the echo area." 1053the echo area.
1054
1055If `eval-expression-debug-on-error' is non-nil, which is the default,
1056this 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