Function: scheme-compile-region-and-go
scheme-compile-region-and-go is an interactive and byte-compiled
function defined in cmuscheme.el.gz.
Signature
(scheme-compile-region-and-go START END)
Documentation
Compile the current region in the inferior Scheme.
Then switch to the process buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cmuscheme.el.gz
(defun scheme-compile-region-and-go (start end)
"Compile the current region in the inferior Scheme.
Then switch to the process buffer."
(interactive "r")
(scheme-compile-region start end)
(switch-to-scheme t))