Mercurial > emacs
changeset 954:9e51bb887797
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Aug 1992 07:25:06 +0000 |
parents | 7c035a87c691 |
children | a69fb1457a02 |
files | lisp/simple.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Mon Aug 10 21:24:45 1992 +0000 +++ b/lisp/simple.el Tue Aug 11 07:25:06 1992 +0000 @@ -342,7 +342,7 @@ ;; 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))