aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-08-11 07:25:06 +0000
committerRichard M. Stallman1992-08-11 07:25:06 +0000
commiteb57c304a1f474c3f29ec04b7d79cc3e49f400f0 (patch)
treece6a5b4f1812929183872743d5d61a1b8f22378f
parent36e6631cf59add98a5ef8e95d3e6edafe994fd48 (diff)
downloademacs-eb57c304a1f474c3f29ec04b7d79cc3e49f400f0.tar.gz
emacs-eb57c304a1f474c3f29ec04b7d79cc3e49f400f0.zip
*** empty log message ***
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index b883f213945..982bd78047d 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -342,7 +342,7 @@ Other major modes are defined by comparison with this one."
342;; for the sake of completion of names like eval-region, eval-current-buffer. 342;; for the sake of completion of names like eval-region, eval-current-buffer.
343(defun eval-expression (expression) 343(defun eval-expression (expression)
344 "Evaluate EXPRESSION and print value in minibuffer. 344 "Evaluate EXPRESSION and print value in minibuffer.
345Value is also consed on to front of variable values 's value." 345Value is also consed on to front of the variable `values'."
346 (interactive "xEval: ") 346 (interactive "xEval: ")
347 (setq values (cons (eval expression) values)) 347 (setq values (cons (eval expression) values))
348 (prin1 (car values) t)) 348 (prin1 (car values) t))