Fix bug that C-x DEL deleted a newline before paragraph.
[bpt/emacs.git] / lisp / cmuscheme.el
CommitLineData
55535639 1;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el
c8472948 2
73b0cd50 3;; Copyright (C) 1988, 1994, 1997, 2001-2011 Free Software Foundation, Inc.
c0274f38 4
07168830 5;; Author: Olin Shivers <olin.shivers@cs.cmu.edu>
8a16a826 6;; Maintainer: FSF
e9571d2a 7;; Keywords: processes, lisp
d1c7011d 8
430c3bab
RS
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
430c3bab 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
430c3bab
RS
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
d1c7011d
ER
23
24;;; Commentary:
25
c59e5c82 26;; This is a customization of comint-mode (see comint.el)
b578f267
EN
27;;
28;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
29;; lifted from scheme.el, shell.el, clisp.el, newclisp.el, cobol.el, et al..
30;; 8/88
31;;
32;; Please send me bug reports, bug fixes, and extensions, so that I can
33;; merge them into the master source.
34;;
35;; The changelog is at the end of this file.
36;;
37;; NOTE: MIT Cscheme, when invoked with the -emacs flag, has a special user
38;; interface that communicates process state back to the superior emacs by
39;; outputting special control sequences. The gnumacs package, xscheme.el, has
40;; lots and lots of special purpose code to read these control sequences, and
41;; so is very tightly integrated with the cscheme process. The cscheme
42;; interrupt handler and debugger read single character commands in cbreak
43;; mode; when this happens, xscheme.el switches to special keymaps that bind
44;; the single letter command keys to emacs functions that directly send the
45;; character to the scheme process. Cmuscheme mode does *not* provide this
46;; functionality. If you are a cscheme user, you may prefer to use the
47;; xscheme.el/cscheme -emacs interaction.
71296446 48;;
b578f267
EN
49;; Here's a summary of the pros and cons, as I see them.
50;; xscheme: Tightly integrated with inferior cscheme process! A few commands
51;; not in cmuscheme. But. Integration is a bit of a hack. Input
52;; history only keeps the immediately prior input. Bizarre
53;; keybindings.
71296446 54;;
b578f267
EN
55;; cmuscheme: Not tightly integrated with inferior cscheme process. But.
56;; Carefully integrated functionality with the entire suite of
57;; comint-derived CMU process modes. Keybindings reminiscent of
58;; Zwei and Hemlock. Good input history. A few commands not in
59;; xscheme.
71296446 60;;
b578f267
EN
61;; It's a tradeoff. Pay your money; take your choice. If you use a Scheme
62;; that isn't Cscheme, of course, there isn't a choice. Xscheme.el is *very*
63;; Cscheme-specific; you must use cmuscheme.el. Interested parties are
64;; invited to port xscheme functionality on top of comint mode...
2f790b20 65
8b877ecd 66;;; CHANGE LOG
8f4cafbc
SM
67;; ===========================================================================
68;; 8/88 Olin
69;; Created.
70;;
71;; 2/15/89 Olin
72;; Removed -emacs flag from process invocation. It's only useful for
73;; cscheme, and makes cscheme assume it's running under xscheme.el,
74;; which messes things up royally. A bug.
75;;
76;; 5/22/90 Olin
77;; - Upgraded to use comint-send-string and comint-send-region.
78;; - run-scheme now offers to let you edit the command line if
79;; you invoke it with a prefix-arg. M-x scheme is redundant, and
80;; has been removed.
81;; - Explicit references to process "scheme" have been replaced with
82;; (scheme-proc). This allows better handling of multiple process bufs.
83;; - Added scheme-send-last-sexp, bound to C-x C-e. A gnu convention.
84;; - Have not added process query facility a la cmulisp.el's lisp-show-arglist
85;; and friends, but interested hackers might find a useful application
86;; of this facility.
87;;
88;; 3/12/90 Olin
89;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme.
90;; Tale suggested this.
8b877ecd 91
d1c7011d
ER
92;;; Code:
93
2f790b20
JB
94(require 'scheme)
95(require 'comint)
96
4bef9110
SE
97
98(defgroup cmuscheme nil
99 "Run a scheme process in a buffer."
80e0fd4c 100 :group 'scheme)
4bef9110 101
2f790b20
JB
102;;; INFERIOR SCHEME MODE STUFF
103;;;============================================================================
104
4bef9110 105(defcustom inferior-scheme-mode-hook nil
9201cc28 106 "Hook for customizing inferior-scheme mode."
4bef9110
SE
107 :type 'hook
108 :group 'cmuscheme)
109
e3f9c7f8
SM
110(defvar inferior-scheme-mode-map
111 (let ((m (make-sparse-keymap)))
112 (define-key m "\M-\C-x" 'scheme-send-definition) ;gnu convention
113 (define-key m "\C-x\C-e" 'scheme-send-last-sexp)
114 (define-key m "\C-c\C-l" 'scheme-load-file)
115 (define-key m "\C-c\C-k" 'scheme-compile-file)
116 (scheme-mode-commands m)
117 m))
2f790b20
JB
118
119;; Install the process communication commands in the scheme-mode keymap.
120(define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
121(define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention
122(define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
123(define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
124(define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region)
125(define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go)
126(define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
127(define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
6f048d26
EZ
128(define-key scheme-mode-map "\C-c\C-t" 'scheme-trace-procedure)
129(define-key scheme-mode-map "\C-c\C-x" 'scheme-expand-current-form)
2f790b20
JB
130(define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme)
131(define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
132(define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
133
45f13532
RS
134(let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
135 (define-key map [separator-eval] '("--"))
136 (define-key map [compile-file]
137 '("Compile Scheme File" . scheme-compile-file))
138 (define-key map [load-file]
139 '("Load Scheme File" . scheme-load-file))
140 (define-key map [switch]
141 '("Switch to Scheme" . switch-to-scheme))
142 (define-key map [com-def-go]
7147c177 143 '("Compile Definition & Go" . scheme-compile-definition-and-go))
45f13532 144 (define-key map [com-def]
7147c177 145 '("Compile Definition" . scheme-compile-definition))
6f048d26
EZ
146 (define-key map [exp-form]
147 '("Expand current form" . scheme-expand-current-form))
148 (define-key map [trace-proc]
149 '("Trace procedure" . scheme-trace-procedure))
45f13532
RS
150 (define-key map [send-def-go]
151 '("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
152 (define-key map [send-def]
153 '("Evaluate Last Definition" . scheme-send-definition))
154 (define-key map [send-region-go]
155 '("Evaluate Region & Go" . scheme-send-region-and-go))
45f13532
RS
156 (define-key map [send-region]
157 '("Evaluate Region" . scheme-send-region))
158 (define-key map [send-sexp]
159 '("Evaluate Last S-expression" . scheme-send-last-sexp))
6f048d26 160 )
45f13532 161
67f3e2fd
RS
162(defvar scheme-buffer)
163
e3f9c7f8 164(define-derived-mode inferior-scheme-mode comint-mode "Inferior Scheme"
2f790b20
JB
165 "Major mode for interacting with an inferior Scheme process.
166
167The following commands are available:
168\\{inferior-scheme-mode-map}
169
170A Scheme process can be fired up with M-x run-scheme.
171
c59e5c82 172Customization: Entry to this mode runs the hooks on comint-mode-hook and
2f790b20
JB
173inferior-scheme-mode-hook (in that order).
174
175You can send text to the inferior Scheme process from other buffers containing
80e0fd4c 176Scheme source.
2f790b20
JB
177 switch-to-scheme switches the current buffer to the Scheme process buffer.
178 scheme-send-definition sends the current definition to the Scheme process.
179 scheme-compile-definition compiles the current definition.
180 scheme-send-region sends the current region to the Scheme process.
181 scheme-compile-region compiles the current region.
182
183 scheme-send-definition-and-go, scheme-compile-definition-and-go,
184 scheme-send-region-and-go, and scheme-compile-region-and-go
185 switch to the Scheme process buffer after sending their text.
186For information on running multiple processes in multiple buffers, see
187documentation for variable scheme-buffer.
188
189Commands:
80e0fd4c 190Return after the end of the process' output sends the text from the
2f790b20
JB
191 end of process to point.
192Return before the end of the process' output copies the sexp ending at point
193 to the end of the process' output, and sends it.
194Delete converts tabs to spaces as it moves back.
195Tab indents for Scheme; with argument, shifts rest
196 of expression rigidly with the current line.
197C-M-q does Tab on each line starting within following expression.
198Paragraphs are separated only by blank lines. Semicolons start comments.
199If you accidentally suspend your process, use \\[comint-continue-subjob]
200to continue it."
c59e5c82 201 ;; Customize in inferior-scheme-mode-hook
9f370a90 202 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
2f790b20 203 (scheme-mode-variables)
7465eb38 204 (setq mode-line-process '(":%s"))
2f790b20 205 (setq comint-input-filter (function scheme-input-filter))
e3f9c7f8 206 (setq comint-get-old-input (function scheme-get-old-input)))
2f790b20 207
4bef9110 208(defcustom inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"
9201cc28 209 "Input matching this regexp are not saved on the history list.
4bef9110
SE
210Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters."
211 :type 'regexp
212 :group 'cmuscheme)
2f790b20 213
67f3e2fd 214(defun scheme-input-filter (str)
80e0fd4c 215 "Don't save anything matching `inferior-scheme-filter-regexp'."
67f3e2fd
RS
216 (not (string-match inferior-scheme-filter-regexp str)))
217
2f790b20 218(defun scheme-get-old-input ()
80e0fd4c 219 "Snarf the sexp ending at point."
2f790b20
JB
220 (save-excursion
221 (let ((end (point)))
222 (backward-sexp)
223 (buffer-substring (point) end))))
224
a0338514 225;;;###autoload
2f790b20 226(defun run-scheme (cmd)
6f048d26 227 "Run an inferior Scheme process, input and output via buffer `*scheme*'.
349a5b09 228If there is a process already running in `*scheme*', switch to that buffer.
2f790b20 229With argument, allows you to edit the command line (default is value
6f048d26 230of `scheme-program-name').
00358595
JB
231If the file `~/.emacs_SCHEMENAME' or `~/.emacs.d/init_SCHEMENAME.scm' exists,
232it is given as initial input.
6f048d26
EZ
233Note that this may lose due to a timing error if the Scheme processor
234discards input when it starts up.
235Runs the hook `inferior-scheme-mode-hook' \(after the `comint-mode-hook'
236is run).
2f790b20
JB
237\(Type \\[describe-mode] in the process buffer for a list of commands.)"
238
239 (interactive (list (if current-prefix-arg
80e0fd4c
DL
240 (read-string "Run Scheme: " scheme-program-name)
241 scheme-program-name)))
2f790b20 242 (if (not (comint-check-proc "*scheme*"))
8f4cafbc 243 (let ((cmdlist (split-string-and-unquote cmd)))
2f790b20 244 (set-buffer (apply 'make-comint "scheme" (car cmdlist)
6f048d26 245 (scheme-start-file (car cmdlist)) (cdr cmdlist)))
2f790b20 246 (inferior-scheme-mode)))
80e0fd4c 247 (setq scheme-program-name cmd)
2f790b20 248 (setq scheme-buffer "*scheme*")
37ac18a3 249 (switch-to-buffer "*scheme*"))
2f790b20 250
6f048d26
EZ
251(defun scheme-start-file (prog)
252 "Return the name of the start file corresponding to PROG.
253Search in the directories \"~\" and \"~/.emacs.d\", in this
254order. Return nil if no start file found."
9a5cd478
EZ
255 (let* ((progname (file-name-nondirectory prog))
256 (start-file (concat "~/.emacs_" progname))
5a96c751 257 (alt-start-file (concat user-emacs-directory "init_" progname ".scm")))
6f048d26
EZ
258 (if (file-exists-p start-file)
259 start-file
00358595 260 (and (file-exists-p alt-start-file) alt-start-file))))
6f048d26 261
2f790b20
JB
262(defun scheme-send-region (start end)
263 "Send the current region to the inferior Scheme process."
264 (interactive "r")
265 (comint-send-region (scheme-proc) start end)
266 (comint-send-string (scheme-proc) "\n"))
267
268(defun scheme-send-definition ()
269 "Send the current definition to the inferior Scheme process."
270 (interactive)
271 (save-excursion
272 (end-of-defun)
273 (let ((end (point)))
274 (beginning-of-defun)
275 (scheme-send-region (point) end))))
276
277(defun scheme-send-last-sexp ()
278 "Send the previous sexp to the inferior Scheme process."
279 (interactive)
280 (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
281
4bef9110 282(defcustom scheme-compile-exp-command "(compile '%s)"
9201cc28 283 "Template for issuing commands to compile arbitrary Scheme expressions."
4bef9110
SE
284 :type 'string
285 :group 'cmuscheme)
2f790b20
JB
286
287(defun scheme-compile-region (start end)
ff11d0d9 288 "Compile the current region in the inferior Scheme process.
2f790b20
JB
289\(A BEGIN is wrapped around the region: (BEGIN <region>))"
290 (interactive "r")
291 (comint-send-string (scheme-proc) (format scheme-compile-exp-command
292 (format "(begin %s)"
293 (buffer-substring start end))))
294 (comint-send-string (scheme-proc) "\n"))
295
296(defun scheme-compile-definition ()
297 "Compile the current definition in the inferior Scheme process."
298 (interactive)
299 (save-excursion
300 (end-of-defun)
301 (let ((end (point)))
302 (beginning-of-defun)
303 (scheme-compile-region (point) end))))
304
6f048d26 305(defcustom scheme-trace-command "(trace %s)"
9201cc28 306 "Template for issuing commands to trace a Scheme procedure.
6f048d26
EZ
307Some Scheme implementations might require more elaborate commands here.
308For PLT-Scheme, e.g., one should use
309
310 (setq scheme-trace-command \"(begin (require (lib \\\"trace.ss\\\")) (trace %s))\")
311
312For Scheme 48 and Scsh use \",trace %s\"."
313 :type 'string
314 :group 'cmuscheme)
315
316(defcustom scheme-untrace-command "(untrace %s)"
9201cc28 317 "Template for switching off tracing of a Scheme procedure.
6f048d26
EZ
318Scheme 48 and Scsh users should set this variable to \",untrace %s\"."
319
320 :type 'string
321 :group 'cmuscheme)
322
323(defun scheme-trace-procedure (proc &optional untrace)
324 "Trace procedure PROC in the inferior Scheme process.
325With a prefix argument switch off tracing of procedure PROC."
326 (interactive
327 (list (let ((current (symbol-at-point))
328 (action (if current-prefix-arg "Untrace" "Trace")))
329 (if current
330 (read-string (format "%s procedure [%s]: " action current) nil nil (symbol-name current))
331 (read-string (format "%s procedure: " action))))
332 current-prefix-arg))
333 (when (= (length proc) 0)
334 (error "Invalid procedure name"))
335 (comint-send-string (scheme-proc)
28a205fe 336 (format
6f048d26
EZ
337 (if untrace scheme-untrace-command scheme-trace-command)
338 proc))
339 (comint-send-string (scheme-proc) "\n"))
340
341(defcustom scheme-macro-expand-command "(expand %s)"
9201cc28 342 "Template for macro-expanding a Scheme form.
6f048d26
EZ
343For Scheme 48 and Scsh use \",expand %s\"."
344 :type 'string
345 :group 'cmuscheme)
346
347(defun scheme-expand-current-form ()
348 "Macro-expand the form at point in the inferior Scheme process."
349 (interactive)
350 (let ((current-form (scheme-form-at-point)))
351 (if current-form
352 (progn
353 (comint-send-string (scheme-proc)
28a205fe 354 (format
6f048d26
EZ
355 scheme-macro-expand-command
356 current-form))
28a205fe 357 (comint-send-string (scheme-proc) "\n"))
6f048d26
EZ
358 (error "Not at a form"))))
359
360(defun scheme-form-at-point ()
361 (let ((next-sexp (thing-at-point 'sexp)))
362 (if (and next-sexp (string-equal (substring next-sexp 0 1) "("))
363 next-sexp
364 (save-excursion
365 (backward-up-list)
366 (scheme-form-at-point)))))
367
2f790b20
JB
368(defun switch-to-scheme (eob-p)
369 "Switch to the scheme process buffer.
80e0fd4c 370With argument, position cursor at end of buffer."
2f790b20 371 (interactive "P")
6f048d26
EZ
372 (if (or (and scheme-buffer (get-buffer scheme-buffer))
373 (scheme-interactively-start-process))
37ac18a3 374 (switch-to-buffer scheme-buffer)
6f048d26
EZ
375 (error "No current process buffer. See variable `scheme-buffer'"))
376 (when eob-p
377 (push-mark)
378 (goto-char (point-max))))
2f790b20
JB
379
380(defun scheme-send-region-and-go (start end)
ff11d0d9
CZ
381 "Send the current region to the inferior Scheme process.
382Then switch to the process buffer."
2f790b20
JB
383 (interactive "r")
384 (scheme-send-region start end)
385 (switch-to-scheme t))
386
387(defun scheme-send-definition-and-go ()
80e0fd4c 388 "Send the current definition to the inferior Scheme.
ff11d0d9 389Then switch to the process buffer."
2f790b20
JB
390 (interactive)
391 (scheme-send-definition)
392 (switch-to-scheme t))
393
394(defun scheme-compile-definition-and-go ()
80e0fd4c 395 "Compile the current definition in the inferior Scheme.
ff11d0d9 396Then switch to the process buffer."
2f790b20
JB
397 (interactive)
398 (scheme-compile-definition)
399 (switch-to-scheme t))
400
401(defun scheme-compile-region-and-go (start end)
80e0fd4c 402 "Compile the current region in the inferior Scheme.
ff11d0d9 403Then switch to the process buffer."
2f790b20
JB
404 (interactive "r")
405 (scheme-compile-region start end)
406 (switch-to-scheme t))
407
4bef9110 408(defcustom scheme-source-modes '(scheme-mode)
9201cc28 409 "Used to determine if a buffer contains Scheme source code.
2f790b20 410If it's loaded into a buffer that is in one of these major modes, it's
80e0fd4c 411considered a scheme source file by `scheme-load-file' and `scheme-compile-file'.
4bef9110
SE
412Used by these commands to determine defaults."
413 :type '(repeat function)
414 :group 'cmuscheme)
2f790b20
JB
415
416(defvar scheme-prev-l/c-dir/file nil
ff11d0d9 417 "Caches the last (directory . file) pair.
80e0fd4c 418Caches the last pair used in the last `scheme-load-file' or
c59e5c82
JB
419`scheme-compile-file' command. Used for determining the default
420in the next one.")
2f790b20
JB
421
422(defun scheme-load-file (file-name)
80e0fd4c 423 "Load a Scheme file FILE-NAME into the inferior Scheme process."
2f790b20 424 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file
0ff9b955 425 scheme-source-modes t)) ; t because `load'
2f790b20
JB
426 ; needs an exact name
427 (comint-check-source file-name) ; Check to see if buffer needs saved.
428 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
429 (file-name-nondirectory file-name)))
430 (comint-send-string (scheme-proc) (concat "(load \""
431 file-name
432 "\"\)\n")))
433
434(defun scheme-compile-file (file-name)
80e0fd4c 435 "Compile a Scheme file FILE-NAME in the inferior Scheme process."
2f790b20
JB
436 (interactive (comint-get-source "Compile Scheme file: "
437 scheme-prev-l/c-dir/file
438 scheme-source-modes
0ff9b955 439 nil)) ; nil because COMPILE doesn't
2f790b20
JB
440 ; need an exact name.
441 (comint-check-source file-name) ; Check to see if buffer needs saved.
442 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
443 (file-name-nondirectory file-name)))
444 (comint-send-string (scheme-proc) (concat "(compile-file \""
445 file-name
446 "\"\)\n")))
447
448\f
449(defvar scheme-buffer nil "*The current scheme process buffer.
450
451MULTIPLE PROCESS SUPPORT
452===========================================================================
453Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme
80e0fd4c
DL
454processes. To run multiple Scheme processes, you start the first up with
455\\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer
456with \\[rename-buffer]. You may now start up a new process with another
457\\[run-scheme]. It will be in a new buffer, named *scheme*. You can
2f790b20
JB
458switch between the different process buffers with \\[switch-to-buffer].
459
460Commands that send text from source buffers to Scheme processes --
80e0fd4c
DL
461like `scheme-send-definition' or `scheme-compile-region' -- have to choose a
462process to send to, when you have more than one Scheme process around. This
463is determined by the global variable `scheme-buffer'. Suppose you
2f790b20
JB
464have three inferior Schemes running:
465 Buffer Process
466 foo scheme
467 bar scheme<2>
468 *scheme* scheme<3>
469If you do a \\[scheme-send-definition-and-go] command on some Scheme source
470code, what process do you send it to?
471
80e0fd4c 472- If you're in a process buffer (foo, bar, or *scheme*),
2f790b20
JB
473 you send it to that process.
474- If you're in some other buffer (e.g., a source file), you
80e0fd4c
DL
475 send it to the process attached to buffer `scheme-buffer'.
476This process selection is performed by function `scheme-proc'.
2f790b20 477
80e0fd4c
DL
478Whenever \\[run-scheme] fires up a new process, it resets `scheme-buffer'
479to be the new process's buffer. If you only run one process, this will
480do the right thing. If you run multiple processes, you can change
481`scheme-buffer' to another process buffer with \\[set-variable].
2f790b20 482
80e0fd4c 483More sophisticated approaches are, of course, possible. If you find yourself
2f790b20
JB
484needing to switch back and forth between multiple processes frequently,
485you may wish to consider ilisp.el, a larger, more sophisticated package
80e0fd4c
DL
486for running inferior Lisp and Scheme processes. The approach taken here is
487for a minimal, simple implementation. Feel free to extend it.")
2f790b20
JB
488
489(defun scheme-proc ()
6f048d26
EZ
490 "Return the current Scheme process, starting one if necessary.
491See variable `scheme-buffer'."
492 (unless (and scheme-buffer
28a205fe 493 (get-buffer scheme-buffer)
6f048d26
EZ
494 (comint-check-proc scheme-buffer))
495 (scheme-interactively-start-process))
496 (or (scheme-get-process)
497 (error "No current process. See variable `scheme-buffer'")))
498
499(defun scheme-get-process ()
500 "Return the current Scheme process or nil if none is running."
501 (get-buffer-process (if (eq major-mode 'inferior-scheme-mode)
502 (current-buffer)
503 scheme-buffer)))
504
06b60517 505(defun scheme-interactively-start-process (&optional _cmd)
6f048d26
EZ
506 "Start an inferior Scheme process. Return the process started.
507Since this command is run implicitly, always ask the user for the
508command to run."
509 (save-window-excursion
510 (run-scheme (read-string "Run Scheme: " scheme-program-name))))
2f790b20 511
c59e5c82 512;;; Do the user's customization...
2f790b20 513
4bef9110 514(defcustom cmuscheme-load-hook nil
2f790b20 515 "This hook is run when cmuscheme is loaded in.
4bef9110
SE
516This is a good place to put keybindings."
517 :type 'hook
518 :group 'cmuscheme)
71296446 519
2f790b20
JB
520(run-hooks 'cmuscheme-load-hook)
521
49116ac0 522(provide 'cmuscheme)
c0274f38
ER
523
524;;; cmuscheme.el ends here