Function: scheme-compile-definition

scheme-compile-definition is an interactive and byte-compiled function defined in cmuscheme.el.gz.

Signature

(scheme-compile-definition)

Documentation

Compile the current definition in the inferior Scheme process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cmuscheme.el.gz
(defun scheme-compile-definition ()
  "Compile the current definition in the inferior Scheme process."
  (interactive)
  (save-excursion
   (end-of-defun)
   (let ((end (point)))
     (beginning-of-defun)
     (scheme-compile-region (point) end))))