diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-09-14 20:12:00 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-09-14 20:12:00 +0000 |
commit | 2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9 (patch) | |
tree | 319b7ba0ec6150d57f04872e3aa651824aa764ef /lisp/emacs-lisp/lisp-mode.el | |
parent | 9680b9d05574653d5918b50abf3c475704538b38 (diff) | |
download | emacs-2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9.tar.gz |
(eval-last-sexp): Use prin1 instead of print.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-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." (set-syntax-table stab)))))) (let ((print-length eval-expression-print-length) (print-level eval-expression-print-level)) - (print value))))) + (prin1 value))))) ;; Change defvar into defconst within FORM, ;; and likewise for other constructs as necessary. |