Function: lisp-eval-paragraph

lisp-eval-paragraph is an interactive and byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-eval-paragraph &optional AND-GO)

Documentation

Send the current paragraph to the inferior Lisp process.

Prefix argument means switch to the Lisp buffer afterwards.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-eval-paragraph (&optional and-go)
  "Send the current paragraph to the inferior Lisp process.
Prefix argument means switch to the Lisp buffer afterwards."
  (interactive "P")
  (save-excursion
    (mark-paragraph)
    (lisp-eval-region (point) (mark) and-go)))