Function: lisp-compile-region-and-go

lisp-compile-region-and-go is an interactive and byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-compile-region-and-go START END)

Documentation

Compile the current region in the inferior Lisp, and switch to its buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-compile-region-and-go (start end)
  "Compile the current region in the inferior Lisp, and switch to its buffer."
  (interactive "r")
  (lisp-compile-region start end t))