diff options
| author | Richard M. Stallman | 1992-08-11 07:25:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-08-11 07:25:06 +0000 |
| commit | eb57c304a1f474c3f29ec04b7d79cc3e49f400f0 (patch) | |
| tree | ce6a5b4f1812929183872743d5d61a1b8f22378f | |
| parent | 36e6631cf59add98a5ef8e95d3e6edafe994fd48 (diff) | |
| download | emacs-eb57c304a1f474c3f29ec04b7d79cc3e49f400f0.tar.gz emacs-eb57c304a1f474c3f29ec04b7d79cc3e49f400f0.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/simple.el | 2 |
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. |
| 345 | Value is also consed on to front of variable values 's value." | 345 | Value 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)) |