Function: lisp-eval-form-and-next
lisp-eval-form-and-next is an interactive and byte-compiled function
defined in inf-lisp.el.gz.
Signature
(lisp-eval-form-and-next)
Documentation
Send the previous sexp to the inferior Lisp process and move to the next one.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-eval-form-and-next ()
"Send the previous sexp to the inferior Lisp process and move to the next one."
(interactive "")
(while (not (zerop (car (syntax-ppss))))
(up-list))
(lisp-eval-last-sexp)
(forward-sexp))