Function: lisp-compile-region
lisp-compile-region is an interactive and byte-compiled function
defined in inf-lisp.el.gz.
Signature
(lisp-compile-region START END &optional AND-GO)
Documentation
Compile the current region in 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-compile-region (start end &optional and-go)
"Compile the current region in the inferior Lisp process.
Prefix argument means switch to the Lisp buffer afterwards."
(interactive "r\nP")
(lisp-compile-string (buffer-substring-no-properties start end))
(if and-go (switch-to-lisp t)))