(info-insert-file-contents): Always check for conflict with jka-compr.
[bpt/emacs.git] / lisp / cmuscheme.el
CommitLineData
c8472948
ER
1;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el.
2
8f1204db 3;; Copyright (C) 1988, 1994 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
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
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
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
d1c7011d
ER
24
25;;; Commentary:
26
2f790b20
JB
27;;; This is a customisation of comint-mode (see comint.el)
28;;;
29;;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
30;;; lifted from scheme.el, shell.el, clisp.el, newclisp.el, cobol.el, et al..
31;;; 8/88
32;;;
33;;; Please send me bug reports, bug fixes, and extensions, so that I can
34;;; merge them into the master source.
35;;;
36;;; The changelog is at the end of this file.
37;;;
38;;; NOTE: MIT Cscheme, when invoked with the -emacs flag, has a special user
39;;; interface that communicates process state back to the superior emacs by
40;;; outputting special control sequences. The gnumacs package, xscheme.el, has
41;;; lots and lots of special purpose code to read these control sequences, and
42;;; so is very tightly integrated with the cscheme process. The cscheme
43;;; interrupt handler and debugger read single character commands in cbreak
44;;; mode; when this happens, xscheme.el switches to special keymaps that bind
45;;; the single letter command keys to emacs functions that directly send the
46;;; character to the scheme process. Cmuscheme mode does *not* provide this
47;;; functionality. If you are a cscheme user, you may prefer to use the
48;;; xscheme.el/cscheme -emacs interaction.
49;;;
50;;; Here's a summary of the pros and cons, as I see them.
51;;; xscheme: Tightly integrated with inferior cscheme process! A few commands
52;;; not in cmuscheme. But. Integration is a bit of a hack. Input
53;;; history only keeps the immediately prior input. Bizarre
54;;; keybindings.
55;;;
56;;; cmuscheme: Not tightly integrated with inferior cscheme process. But.
57;;; Carefully integrated functionality with the entire suite of
58;;; comint-derived CMU process modes. Keybindings reminiscent of
59;;; Zwei and Hemlock. Good input history. A few commands not in
60;;; xscheme.
61;;;
62;;; It's a tradeoff. Pay your money; take your choice. If you use a Scheme
63;;; that isn't Cscheme, of course, there isn't a choice. Xscheme.el is *very*
64;;; Cscheme-specific; you must use cmuscheme.el. Interested parties are
65;;; invited to port xscheme functionality on top of comint mode...
66
67;; YOUR .EMACS FILE
68;;=============================================================================
69;; Some suggestions for your .emacs file.
70;;
2f790b20
JB
71;; ; Autoload run-scheme from file cmuscheme.el
72;; (autoload 'run-scheme "cmuscheme"
73;; "Run an inferior Scheme process."
74;; t)
75;;
2f790b20
JB
76;; ; Define C-c t to run my favorite command in inferior scheme mode:
77;; (setq cmuscheme-load-hook
78;; '((lambda () (define-key inferior-scheme-mode-map "\C-ct"
79;; 'favorite-cmd))))
80;;;
81;;; Unfortunately, scheme.el defines run-scheme to autoload from xscheme.el.
82;;; This will womp your declaration to autoload run-scheme from cmuscheme.el
83;;; if you haven't loaded cmuscheme in before scheme. Three fixes:
84;;; - Put the autoload on your scheme mode hook and in your .emacs toplevel:
85;;; (setq scheme-mode-hook
86;;; '((lambda () (autoload 'run-scheme "cmuscheme"
87;;; "Run an inferior Scheme" t))))
88;;; (autoload 'run-scheme "cmuscheme" "Run an inferior Scheme" t)
89;;; Now when scheme.el autoloads, it will restore the run-scheme autoload.
90;;; - Load cmuscheme.el in your .emacs: (load-library 'cmuscheme)
91;;; - Change autoload declaration in scheme.el to point to cmuscheme.el:
92;;; (autoload 'run-scheme "cmuscheme" "Run an inferior Scheme" t)
93;;; *or* just delete the autoload declaration from scheme.el altogether,
94;;; which will allow the autoload in your .emacs to have its say.
95
d1c7011d
ER
96;;; Code:
97
2f790b20
JB
98(require 'scheme)
99(require 'comint)
100
101;;; INFERIOR SCHEME MODE STUFF
102;;;============================================================================
103
104(defvar inferior-scheme-mode-hook nil
105 "*Hook for customising inferior-scheme mode.")
106(defvar inferior-scheme-mode-map nil)
107
108(cond ((not inferior-scheme-mode-map)
109 (setq inferior-scheme-mode-map
254b60f8 110 (copy-keymap comint-mode-map))
2f790b20
JB
111 (define-key inferior-scheme-mode-map "\M-\C-x" ;gnu convention
112 'scheme-send-definition)
113 (define-key inferior-scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp)
114 (define-key inferior-scheme-mode-map "\C-c\C-l" 'scheme-load-file)
115 (define-key inferior-scheme-mode-map "\C-c\C-k" 'scheme-compile-file)
116 (scheme-mode-commands inferior-scheme-mode-map)))
117
118;; Install the process communication commands in the scheme-mode keymap.
119(define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
120(define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention
121(define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
122(define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
123(define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region)
124(define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go)
125(define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
126(define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
127(define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme)
128(define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
129(define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
130
67f3e2fd
RS
131(defvar scheme-buffer)
132
2f790b20
JB
133(defun inferior-scheme-mode ()
134 "Major mode for interacting with an inferior Scheme process.
135
136The following commands are available:
137\\{inferior-scheme-mode-map}
138
139A Scheme process can be fired up with M-x run-scheme.
140
141Customisation: Entry to this mode runs the hooks on comint-mode-hook and
142inferior-scheme-mode-hook (in that order).
143
144You can send text to the inferior Scheme process from other buffers containing
145Scheme source.
146 switch-to-scheme switches the current buffer to the Scheme process buffer.
147 scheme-send-definition sends the current definition to the Scheme process.
148 scheme-compile-definition compiles the current definition.
149 scheme-send-region sends the current region to the Scheme process.
150 scheme-compile-region compiles the current region.
151
152 scheme-send-definition-and-go, scheme-compile-definition-and-go,
153 scheme-send-region-and-go, and scheme-compile-region-and-go
154 switch to the Scheme process buffer after sending their text.
155For information on running multiple processes in multiple buffers, see
156documentation for variable scheme-buffer.
157
158Commands:
159Return after the end of the process' output sends the text from the
160 end of process to point.
161Return before the end of the process' output copies the sexp ending at point
162 to the end of the process' output, and sends it.
163Delete converts tabs to spaces as it moves back.
164Tab indents for Scheme; with argument, shifts rest
165 of expression rigidly with the current line.
166C-M-q does Tab on each line starting within following expression.
167Paragraphs are separated only by blank lines. Semicolons start comments.
168If you accidentally suspend your process, use \\[comint-continue-subjob]
169to continue it."
170 (interactive)
171 (comint-mode)
172 ;; Customise in inferior-scheme-mode-hook
9f370a90 173 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
2f790b20
JB
174 (scheme-mode-variables)
175 (setq major-mode 'inferior-scheme-mode)
176 (setq mode-name "Inferior Scheme")
7465eb38 177 (setq mode-line-process '(":%s"))
2f790b20
JB
178 (use-local-map inferior-scheme-mode-map)
179 (setq comint-input-filter (function scheme-input-filter))
2f790b20
JB
180 (setq comint-get-old-input (function scheme-get-old-input))
181 (run-hooks 'inferior-scheme-mode-hook))
182
2f790b20
JB
183(defvar inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"
184 "*Input matching this regexp are not saved on the history list.
185Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters.")
186
67f3e2fd
RS
187(defun scheme-input-filter (str)
188 "Don't save anything matching inferior-scheme-filter-regexp"
189 (not (string-match inferior-scheme-filter-regexp str)))
190
2f790b20
JB
191(defun scheme-get-old-input ()
192 "Snarf the sexp ending at point"
193 (save-excursion
194 (let ((end (point)))
195 (backward-sexp)
196 (buffer-substring (point) end))))
197
198(defun scheme-args-to-list (string)
199 (let ((where (string-match "[ \t]" string)))
200 (cond ((null where) (list string))
201 ((not (= where 0))
202 (cons (substring string 0 where)
203 (scheme-args-to-list (substring string (+ 1 where)
204 (length string)))))
205 (t (let ((pos (string-match "[^ \t]" string)))
206 (if (null pos)
207 nil
208 (scheme-args-to-list (substring string pos
209 (length string)))))))))
210
211(defvar scheme-program-name "scheme"
212 "*Program invoked by the run-scheme command")
213
214;;; Obsolete
215(defun scheme (&rest foo)
216 "Use run-scheme"
217 (interactive)
218 (message "Use run-scheme")
219 (ding))
220
221(defun run-scheme (cmd)
222 "Run an inferior Scheme process, input and output via buffer *scheme*.
223If there is a process already running in *scheme*, just switch to that buffer.
224With argument, allows you to edit the command line (default is value
225of scheme-program-name). Runs the hooks from inferior-scheme-mode-hook
226\(after the comint-mode-hook is run).
227\(Type \\[describe-mode] in the process buffer for a list of commands.)"
228
229 (interactive (list (if current-prefix-arg
230 (read-string "Run Scheme: " scheme-program-name)
231 scheme-program-name)))
232 (if (not (comint-check-proc "*scheme*"))
233 (let ((cmdlist (scheme-args-to-list cmd)))
234 (set-buffer (apply 'make-comint "scheme" (car cmdlist)
235 nil (cdr cmdlist)))
236 (inferior-scheme-mode)))
c30b759d 237 (setq scheme-program-name cmd)
2f790b20
JB
238 (setq scheme-buffer "*scheme*")
239 (switch-to-buffer "*scheme*"))
240
241
242(defun scheme-send-region (start end)
243 "Send the current region to the inferior Scheme process."
244 (interactive "r")
245 (comint-send-region (scheme-proc) start end)
246 (comint-send-string (scheme-proc) "\n"))
247
248(defun scheme-send-definition ()
249 "Send the current definition to the inferior Scheme process."
250 (interactive)
251 (save-excursion
252 (end-of-defun)
253 (let ((end (point)))
254 (beginning-of-defun)
255 (scheme-send-region (point) end))))
256
257(defun scheme-send-last-sexp ()
258 "Send the previous sexp to the inferior Scheme process."
259 (interactive)
260 (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
261
262(defvar scheme-compile-exp-command "(compile '%s)"
263 "*Template for issuing commands to compile arbitrary Scheme expressions.")
264
265(defun scheme-compile-region (start end)
ff11d0d9 266 "Compile the current region in the inferior Scheme process.
2f790b20
JB
267\(A BEGIN is wrapped around the region: (BEGIN <region>))"
268 (interactive "r")
269 (comint-send-string (scheme-proc) (format scheme-compile-exp-command
270 (format "(begin %s)"
271 (buffer-substring start end))))
272 (comint-send-string (scheme-proc) "\n"))
273
274(defun scheme-compile-definition ()
275 "Compile the current definition in the inferior Scheme process."
276 (interactive)
277 (save-excursion
278 (end-of-defun)
279 (let ((end (point)))
280 (beginning-of-defun)
281 (scheme-compile-region (point) end))))
282
283(defun switch-to-scheme (eob-p)
284 "Switch to the scheme process buffer.
285With argument, positions cursor at end of buffer."
286 (interactive "P")
287 (if (get-buffer scheme-buffer)
288 (pop-to-buffer scheme-buffer)
289 (error "No current process buffer. See variable scheme-buffer."))
290 (cond (eob-p
291 (push-mark)
292 (goto-char (point-max)))))
293
294(defun scheme-send-region-and-go (start end)
ff11d0d9
CZ
295 "Send the current region to the inferior Scheme process.
296Then switch to the process buffer."
2f790b20
JB
297 (interactive "r")
298 (scheme-send-region start end)
299 (switch-to-scheme t))
300
301(defun scheme-send-definition-and-go ()
ff11d0d9
CZ
302 "Send the current definition to the inferior Scheme.
303Then switch to the process buffer."
2f790b20
JB
304 (interactive)
305 (scheme-send-definition)
306 (switch-to-scheme t))
307
308(defun scheme-compile-definition-and-go ()
ff11d0d9
CZ
309 "Compile the current definition in the inferior Scheme.
310Then switch to the process buffer."
2f790b20
JB
311 (interactive)
312 (scheme-compile-definition)
313 (switch-to-scheme t))
314
315(defun scheme-compile-region-and-go (start end)
ff11d0d9
CZ
316 "Compile the current region in the inferior Scheme.
317Then switch to the process buffer."
2f790b20
JB
318 (interactive "r")
319 (scheme-compile-region start end)
320 (switch-to-scheme t))
321
322(defvar scheme-source-modes '(scheme-mode)
323 "*Used to determine if a buffer contains Scheme source code.
324If it's loaded into a buffer that is in one of these major modes, it's
325considered a scheme source file by scheme-load-file and scheme-compile-file.
326Used by these commands to determine defaults.")
327
328(defvar scheme-prev-l/c-dir/file nil
ff11d0d9
CZ
329 "Caches the last (directory . file) pair.
330Caches the last pair used in the last scheme-load-file or
2f790b20
JB
331scheme-compile-file command. Used for determining the default in the
332next one.")
333
334(defun scheme-load-file (file-name)
335 "Load a Scheme file into the inferior Scheme process."
336 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file
337 scheme-source-modes t)) ; T because LOAD
338 ; needs an exact name
339 (comint-check-source file-name) ; Check to see if buffer needs saved.
340 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
341 (file-name-nondirectory file-name)))
342 (comint-send-string (scheme-proc) (concat "(load \""
343 file-name
344 "\"\)\n")))
345
346(defun scheme-compile-file (file-name)
347 "Compile a Scheme file in the inferior Scheme process."
348 (interactive (comint-get-source "Compile Scheme file: "
349 scheme-prev-l/c-dir/file
350 scheme-source-modes
351 nil)) ; NIL because COMPILE doesn't
352 ; need an exact name.
353 (comint-check-source file-name) ; Check to see if buffer needs saved.
354 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
355 (file-name-nondirectory file-name)))
356 (comint-send-string (scheme-proc) (concat "(compile-file \""
357 file-name
358 "\"\)\n")))
359
360\f
361(defvar scheme-buffer nil "*The current scheme process buffer.
362
363MULTIPLE PROCESS SUPPORT
364===========================================================================
365Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme
366processes. To run multiple Scheme processes, you start the first up with
367\\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer
368with \\[rename-buffer]. You may now start up a new process with another
369\\[run-scheme]. It will be in a new buffer, named *scheme*. You can
370switch between the different process buffers with \\[switch-to-buffer].
371
372Commands that send text from source buffers to Scheme processes --
373like scheme-send-definition or scheme-compile-region -- have to choose a
374process to send to, when you have more than one Scheme process around. This
375is determined by the global variable scheme-buffer. Suppose you
376have three inferior Schemes running:
377 Buffer Process
378 foo scheme
379 bar scheme<2>
380 *scheme* scheme<3>
381If you do a \\[scheme-send-definition-and-go] command on some Scheme source
382code, what process do you send it to?
383
384- If you're in a process buffer (foo, bar, or *scheme*),
385 you send it to that process.
386- If you're in some other buffer (e.g., a source file), you
387 send it to the process attached to buffer scheme-buffer.
388This process selection is performed by function scheme-proc.
389
390Whenever \\[run-scheme] fires up a new process, it resets scheme-buffer
391to be the new process's buffer. If you only run one process, this will
392do the right thing. If you run multiple processes, you can change
393scheme-buffer to another process buffer with \\[set-variable].
394
eb8c3be9 395More sophisticated approaches are, of course, possible. If you find yourself
2f790b20
JB
396needing to switch back and forth between multiple processes frequently,
397you may wish to consider ilisp.el, a larger, more sophisticated package
398for running inferior Lisp and Scheme processes. The approach taken here is
399for a minimal, simple implementation. Feel free to extend it.")
400
401(defun scheme-proc ()
402 "Returns the current scheme process. See variable scheme-buffer."
403 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-scheme-mode)
404 (current-buffer)
405 scheme-buffer))))
406 (or proc
407 (error "No current process. See variable scheme-buffer"))))
408
409
410;;; Do the user's customisation...
411
412(defvar cmuscheme-load-hook nil
413 "This hook is run when cmuscheme is loaded in.
414This is a good place to put keybindings.")
415
416(run-hooks 'cmuscheme-load-hook)
417
418
419;;; CHANGE LOG
420;;; ===========================================================================
421;;; 8/88 Olin
422;;; Created.
423;;;
424;;; 2/15/89 Olin
425;;; Removed -emacs flag from process invocation. It's only useful for
426;;; cscheme, and makes cscheme assume it's running under xscheme.el,
427;;; which messes things up royally. A bug.
428;;;
429;;; 5/22/90 Olin
430;;; - Upgraded to use comint-send-string and comint-send-region.
431;;; - run-scheme now offers to let you edit the command line if
432;;; you invoke it with a prefix-arg. M-x scheme is redundant, and
433;;; has been removed.
434;;; - Explicit references to process "scheme" have been replaced with
435;;; (scheme-proc). This allows better handling of multiple process bufs.
436;;; - Added scheme-send-last-sexp, bound to C-x C-e. A gnu convention.
437;;; - Have not added process query facility a la cmulisp.el's lisp-show-arglist
438;;; and friends, but interested hackers might find a useful application
439;;; of this facility.
440;;;
441;;; 3/12/90 Olin
442;;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme.
443;;; Tale suggested this.
49116ac0
JB
444
445(provide 'cmuscheme)
c0274f38
ER
446
447;;; cmuscheme.el ends here