changeset 255:cdf87250ed27

*** empty log message ***
author Roland McGrath <roland@gnu.org>
date Thu, 09 May 1991 17:10:09 +0000
parents 6617b231ec15
children 7e4c7ef44243
files lisp/emacs-lisp/lisp-mode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el	Thu May 09 11:36:36 1991 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el	Thu May 09 17:10:09 1991 +0000
@@ -203,9 +203,9 @@
 (defun eval-print-last-sexp ()
   "Evaluate sexp before point; print value into current buffer."
   (interactive)
-  (newline)
+  (terpri (current-buffer))
   (eval-last-sexp t)
-  (newline))
+  (terpri (current-buffer)))
 
 (defun eval-last-sexp (arg)
   "Evaluate sexp before point; print value in minibuffer.