From: Gerd Moellmann Date: Tue, 14 Sep 1999 20:12:00 +0000 (+0000) Subject: (eval-last-sexp): Use prin1 instead of print. X-Git-Tag: emacs-pretest-21.0.90~6719 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e0a943f5bdf7c344eb239836f65f3fdc40aa6f9;p=emacs.git (eval-last-sexp): Use prin1 instead of print. --- 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.