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