aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1992-08-11 07:25:06 +0000
committerRichard M. Stallman <[email protected]>1992-08-11 07:25:06 +0000
commiteb57c304a1f474c3f29ec04b7d79cc3e49f400f0 (patch)
treece6a5b4f1812929183872743d5d61a1b8f22378f /lisp
parent36e6631cf59add98a5ef8e95d3e6edafe994fd48 (diff)
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index b883f21394..982bd78047 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -342,7 +342,7 @@ Other major modes are defined by comparison with this one."
;; for the sake of completion of names like eval-region, eval-current-buffer.
(defun eval-expression (expression)
"Evaluate EXPRESSION and print value in minibuffer.
-Value is also consed on to front of variable values 's value."
+Value is also consed on to front of the variable `values'."
(interactive "xEval: ")
(setq values (cons (eval expression) values))
(prin1 (car values) t))