diff options
author | Jim Blandy <jimb@redhat.com> | 1991-05-09 11:36:36 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1991-05-09 11:36:36 +0000 |
commit | fc3feb2a41a781fcefaa0d23655203dc73b1ab9b (patch) | |
tree | dc0c86f57c678d15ff7de65bbe8903fd9cc9589d /lisp/emacs-lisp/lisp-mode.el | |
parent | 08a24c47d1ff4aa7b0382cf25ae70c4320339afd (diff) | |
download | emacs-fc3feb2a41a781fcefaa0d23655203dc73b1ab9b.tar.gz emacs-fc3feb2a41a781fcefaa0d23655203dc73b1ab9b.tar.bz2 emacs-fc3feb2a41a781fcefaa0d23655203dc73b1ab9b.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 37216ebd1b4..a9447376498 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -203,7 +203,9 @@ if that value is non-nil." (defun eval-print-last-sexp () "Evaluate sexp before point; print value into current buffer." (interactive) - (eval-last-sexp t)) + (newline) + (eval-last-sexp t) + (newline)) (defun eval-last-sexp (arg) "Evaluate sexp before point; print value in minibuffer. |