diff options
| author | Gerd Moellmann | 1999-09-14 20:12:00 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-14 20:12:00 +0000 |
| commit | 2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9 (patch) | |
| tree | 319b7ba0ec6150d57f04872e3aa651824aa764ef | |
| parent | 9680b9d05574653d5918b50abf3c475704538b38 (diff) | |
| download | emacs-2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9.tar.gz emacs-2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9.zip | |
(eval-last-sexp): Use prin1 instead of print.
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index b4b9f0b92a4..2f09c352811 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -373,7 +373,7 @@ With argument, print output into current buffer." | |||
| 373 | (set-syntax-table stab)))))) | 373 | (set-syntax-table stab)))))) |
| 374 | (let ((print-length eval-expression-print-length) | 374 | (let ((print-length eval-expression-print-length) |
| 375 | (print-level eval-expression-print-level)) | 375 | (print-level eval-expression-print-level)) |
| 376 | (print value))))) | 376 | (prin1 value))))) |
| 377 | 377 | ||
| 378 | ;; Change defvar into defconst within FORM, | 378 | ;; Change defvar into defconst within FORM, |
| 379 | ;; and likewise for other constructs as necessary. | 379 | ;; and likewise for other constructs as necessary. |