comparison lisp/emacs-lisp/lisp-mode.el @ 254:6617b231ec15

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Thu, 09 May 1991 11:36:36 +0000
parents 43cdaf2db624
children cdf87250ed27
comparison
equal deleted inserted replaced
253:96e7be36ffe5 254:6617b231ec15
201 (run-hooks 'lisp-interaction-mode-hook)) 201 (run-hooks 'lisp-interaction-mode-hook))
202 202
203 (defun eval-print-last-sexp () 203 (defun eval-print-last-sexp ()
204 "Evaluate sexp before point; print value into current buffer." 204 "Evaluate sexp before point; print value into current buffer."
205 (interactive) 205 (interactive)
206 (eval-last-sexp t)) 206 (newline)
207 (eval-last-sexp t)
208 (newline))
207 209
208 (defun eval-last-sexp (arg) 210 (defun eval-last-sexp (arg)
209 "Evaluate sexp before point; print value in minibuffer. 211 "Evaluate sexp before point; print value in minibuffer.
210 With argument, print output into current buffer." 212 With argument, print output into current buffer."
211 (interactive "P") 213 (interactive "P")