Function: scheme-interactively-start-process
scheme-interactively-start-process is a byte-compiled function defined
in cmuscheme.el.gz.
Signature
(scheme-interactively-start-process &optional CMD)
Documentation
Start an inferior Scheme process. Return the process started.
Since this command is run implicitly, always ask the user for the command to run.
Source Code
;; Defined in /usr/src/emacs/lisp/cmuscheme.el.gz
(defun scheme-interactively-start-process (&optional _cmd)
"Start an inferior Scheme process. Return the process started.
Since this command is run implicitly, always ask the user for the
command to run."
(save-window-excursion
(run-scheme (read-string "Run Scheme: " scheme-program-name))))