Function: scheme-compile-definition-and-go

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

Signature

(scheme-compile-definition-and-go)

Documentation

Compile the current definition 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-definition-and-go ()
  "Compile the current definition in the inferior Scheme.
Then switch to the process buffer."
  (interactive)
  (scheme-compile-definition)
  (switch-to-scheme t))