]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-last-sexp): Use prin1 instead of print.
authorGerd Moellmann <gerd@gnu.org>
Tue, 14 Sep 1999 20:12:00 +0000 (20:12 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 14 Sep 1999 20:12:00 +0000 (20:12 +0000)
lisp/emacs-lisp/lisp-mode.el

index b4b9f0b92a42c6409930b37463a195d5b0bac035..2f09c3528116a4b2f9cdbbc8327406b8afcc2a97 100644 (file)
@@ -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.