Function: xscheme-send-buffer

xscheme-send-buffer is an interactive and byte-compiled function defined in xscheme.el.gz.

Signature

(xscheme-send-buffer)

Documentation

Send the current buffer to the Scheme process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
(defun xscheme-send-buffer ()
  "Send the current buffer to the Scheme process."
  (interactive)
  (if (xscheme-process-buffer-current-p)
      (error "Not allowed to send this buffer's contents to Scheme"))
  (xscheme-send-region (point-min) (point-max)))