Function: scheme-send-region

scheme-send-region is an interactive and byte-compiled function defined in cmuscheme.el.gz.

Signature

(scheme-send-region START END)

Documentation

Send the current region to the inferior Scheme process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cmuscheme.el.gz
(defun scheme-send-region (start end)
  "Send the current region to the inferior Scheme process."
  (interactive "r")
  (comint-send-region (scheme-proc) start end)
  (comint-send-string (scheme-proc) "\n"))