Function: lisp-eval-last-sexp

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

Signature

(lisp-eval-last-sexp &optional AND-GO)

Documentation

Send the previous sexp to the inferior Lisp process.

Prefix argument means switch to the Lisp buffer afterwards.

This function has :around advice: evil--preceding-sexp.

Key Bindings

Source Code

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