mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 06:50:23 -08:00
*** empty log message ***
This commit is contained in:
parent
3e2bea7c25
commit
f798d950c8
1 changed files with 4 additions and 3 deletions
|
|
@ -202,9 +202,10 @@ if that value is non-nil."
|
|||
(defun eval-print-last-sexp ()
|
||||
"Evaluate sexp before point; print value into current buffer."
|
||||
(interactive)
|
||||
(terpri (current-buffer))
|
||||
(eval-last-sexp t)
|
||||
(terpri (current-buffer)))
|
||||
(let ((standard-output (current-buffer)))
|
||||
(terpri)
|
||||
(eval-last-sexp t)
|
||||
(terpri)))
|
||||
|
||||
(defun eval-last-sexp (arg)
|
||||
"Evaluate sexp before point; print value in minibuffer.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue