comparison lisp/cmuscheme.el @ 20601:97249de6bbfa

Move change log comment block so lm-commentary doesn't lose.
author Dave Love <fx@gnu.org>
date Wed, 07 Jan 1998 12:39:59 +0000
parents 5b29242aea2a
children ac1673121774
comparison
equal deleted inserted replaced
20600:323f33e3e92c 20601:97249de6bbfa
63 ;; It's a tradeoff. Pay your money; take your choice. If you use a Scheme 63 ;; It's a tradeoff. Pay your money; take your choice. If you use a Scheme
64 ;; that isn't Cscheme, of course, there isn't a choice. Xscheme.el is *very* 64 ;; that isn't Cscheme, of course, there isn't a choice. Xscheme.el is *very*
65 ;; Cscheme-specific; you must use cmuscheme.el. Interested parties are 65 ;; Cscheme-specific; you must use cmuscheme.el. Interested parties are
66 ;; invited to port xscheme functionality on top of comint mode... 66 ;; invited to port xscheme functionality on top of comint mode...
67 67
68 ;;; Code:
69
70 (require 'scheme)
71 (require 'comint)
72
73 ;;; INFERIOR SCHEME MODE STUFF
74 ;;;============================================================================
75
76 (defvar inferior-scheme-mode-hook nil
77 "*Hook for customising inferior-scheme mode.")
78 (defvar inferior-scheme-mode-map nil)
79
80 (cond ((not inferior-scheme-mode-map)
81 (setq inferior-scheme-mode-map
82 (copy-keymap comint-mode-map))
83 (define-key inferior-scheme-mode-map "\M-\C-x" ;gnu convention
84 'scheme-send-definition)
85 (define-key inferior-scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp)
86 (define-key inferior-scheme-mode-map "\C-c\C-l" 'scheme-load-file)
87 (define-key inferior-scheme-mode-map "\C-c\C-k" 'scheme-compile-file)
88 (scheme-mode-commands inferior-scheme-mode-map)))
89
90 ;; Install the process communication commands in the scheme-mode keymap.
91 (define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
92 (define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention
93 (define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
94 (define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
95 (define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region)
96 (define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go)
97 (define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
98 (define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
99 (define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme)
100 (define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
101 (define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
102
103 (let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
104 (define-key map [separator-eval] '("--"))
105 (define-key map [compile-file]
106 '("Compile Scheme File" . scheme-compile-file))
107 (define-key map [load-file]
108 '("Load Scheme File" . scheme-load-file))
109 (define-key map [switch]
110 '("Switch to Scheme" . switch-to-scheme))
111 (define-key map [com-def-go]
112 '("Compile Definitiion & Go" . scheme-compile-definition-and-go))
113 (define-key map [com-def]
114 '("Compile Definitiion" . scheme-compile-definition))
115 (define-key map [send-def-go]
116 '("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
117 (define-key map [send-def]
118 '("Evaluate Last Definition" . scheme-send-definition))
119 (define-key map [send-region-go]
120 '("Evaluate Region & Go" . scheme-send-region-and-go))
121 (define-key map [send-region]
122 '("Evaluate Region" . scheme-send-region))
123 (define-key map [send-sexp]
124 '("Evaluate Last S-expression" . scheme-send-last-sexp))
125 )
126
127 (defvar scheme-buffer)
128
129 (defun inferior-scheme-mode ()
130 "Major mode for interacting with an inferior Scheme process.
131
132 The following commands are available:
133 \\{inferior-scheme-mode-map}
134
135 A Scheme process can be fired up with M-x run-scheme.
136
137 Customisation: Entry to this mode runs the hooks on comint-mode-hook and
138 inferior-scheme-mode-hook (in that order).
139
140 You can send text to the inferior Scheme process from other buffers containing
141 Scheme source.
142 switch-to-scheme switches the current buffer to the Scheme process buffer.
143 scheme-send-definition sends the current definition to the Scheme process.
144 scheme-compile-definition compiles the current definition.
145 scheme-send-region sends the current region to the Scheme process.
146 scheme-compile-region compiles the current region.
147
148 scheme-send-definition-and-go, scheme-compile-definition-and-go,
149 scheme-send-region-and-go, and scheme-compile-region-and-go
150 switch to the Scheme process buffer after sending their text.
151 For information on running multiple processes in multiple buffers, see
152 documentation for variable scheme-buffer.
153
154 Commands:
155 Return after the end of the process' output sends the text from the
156 end of process to point.
157 Return before the end of the process' output copies the sexp ending at point
158 to the end of the process' output, and sends it.
159 Delete converts tabs to spaces as it moves back.
160 Tab indents for Scheme; with argument, shifts rest
161 of expression rigidly with the current line.
162 C-M-q does Tab on each line starting within following expression.
163 Paragraphs are separated only by blank lines. Semicolons start comments.
164 If you accidentally suspend your process, use \\[comint-continue-subjob]
165 to continue it."
166 (interactive)
167 (comint-mode)
168 ;; Customise in inferior-scheme-mode-hook
169 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
170 (scheme-mode-variables)
171 (setq major-mode 'inferior-scheme-mode)
172 (setq mode-name "Inferior Scheme")
173 (setq mode-line-process '(":%s"))
174 (use-local-map inferior-scheme-mode-map)
175 (setq comint-input-filter (function scheme-input-filter))
176 (setq comint-get-old-input (function scheme-get-old-input))
177 (run-hooks 'inferior-scheme-mode-hook))
178
179 (defvar inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"
180 "*Input matching this regexp are not saved on the history list.
181 Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters.")
182
183 (defun scheme-input-filter (str)
184 "Don't save anything matching inferior-scheme-filter-regexp"
185 (not (string-match inferior-scheme-filter-regexp str)))
186
187 (defun scheme-get-old-input ()
188 "Snarf the sexp ending at point"
189 (save-excursion
190 (let ((end (point)))
191 (backward-sexp)
192 (buffer-substring (point) end))))
193
194 (defun scheme-args-to-list (string)
195 (let ((where (string-match "[ \t]" string)))
196 (cond ((null where) (list string))
197 ((not (= where 0))
198 (cons (substring string 0 where)
199 (scheme-args-to-list (substring string (+ 1 where)
200 (length string)))))
201 (t (let ((pos (string-match "[^ \t]" string)))
202 (if (null pos)
203 nil
204 (scheme-args-to-list (substring string pos
205 (length string)))))))))
206
207 (defvar scheme-program-name "scheme"
208 "*Program invoked by the run-scheme command")
209
210 ;;;###autoload
211 (defun run-scheme (cmd)
212 "Run an inferior Scheme process, input and output via buffer *scheme*.
213 If there is a process already running in `*scheme*', switch to that buffer.
214 With argument, allows you to edit the command line (default is value
215 of `scheme-program-name'). Runs the hooks `inferior-scheme-mode-hook'
216 \(after the `comint-mode-hook' is run).
217 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
218
219 (interactive (list (if current-prefix-arg
220 (read-string "Run Scheme: " scheme-program-name)
221 scheme-program-name)))
222 (if (not (comint-check-proc "*scheme*"))
223 (let ((cmdlist (scheme-args-to-list cmd)))
224 (set-buffer (apply 'make-comint "scheme" (car cmdlist)
225 nil (cdr cmdlist)))
226 (inferior-scheme-mode)))
227 (setq scheme-program-name cmd)
228 (setq scheme-buffer "*scheme*")
229 (pop-to-buffer "*scheme*"))
230 ;;;###autoload (add-hook 'same-window-buffer-names "*scheme*")
231
232 (defun scheme-send-region (start end)
233 "Send the current region to the inferior Scheme process."
234 (interactive "r")
235 (comint-send-region (scheme-proc) start end)
236 (comint-send-string (scheme-proc) "\n"))
237
238 (defun scheme-send-definition ()
239 "Send the current definition to the inferior Scheme process."
240 (interactive)
241 (save-excursion
242 (end-of-defun)
243 (let ((end (point)))
244 (beginning-of-defun)
245 (scheme-send-region (point) end))))
246
247 (defun scheme-send-last-sexp ()
248 "Send the previous sexp to the inferior Scheme process."
249 (interactive)
250 (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
251
252 (defvar scheme-compile-exp-command "(compile '%s)"
253 "*Template for issuing commands to compile arbitrary Scheme expressions.")
254
255 (defun scheme-compile-region (start end)
256 "Compile the current region in the inferior Scheme process.
257 \(A BEGIN is wrapped around the region: (BEGIN <region>))"
258 (interactive "r")
259 (comint-send-string (scheme-proc) (format scheme-compile-exp-command
260 (format "(begin %s)"
261 (buffer-substring start end))))
262 (comint-send-string (scheme-proc) "\n"))
263
264 (defun scheme-compile-definition ()
265 "Compile the current definition in the inferior Scheme process."
266 (interactive)
267 (save-excursion
268 (end-of-defun)
269 (let ((end (point)))
270 (beginning-of-defun)
271 (scheme-compile-region (point) end))))
272
273 (defun switch-to-scheme (eob-p)
274 "Switch to the scheme process buffer.
275 With argument, positions cursor at end of buffer."
276 (interactive "P")
277 (if (get-buffer scheme-buffer)
278 (pop-to-buffer scheme-buffer)
279 (error "No current process buffer. See variable scheme-buffer."))
280 (cond (eob-p
281 (push-mark)
282 (goto-char (point-max)))))
283
284 (defun scheme-send-region-and-go (start end)
285 "Send the current region to the inferior Scheme process.
286 Then switch to the process buffer."
287 (interactive "r")
288 (scheme-send-region start end)
289 (switch-to-scheme t))
290
291 (defun scheme-send-definition-and-go ()
292 "Send the current definition to the inferior Scheme.
293 Then switch to the process buffer."
294 (interactive)
295 (scheme-send-definition)
296 (switch-to-scheme t))
297
298 (defun scheme-compile-definition-and-go ()
299 "Compile the current definition in the inferior Scheme.
300 Then switch to the process buffer."
301 (interactive)
302 (scheme-compile-definition)
303 (switch-to-scheme t))
304
305 (defun scheme-compile-region-and-go (start end)
306 "Compile the current region in the inferior Scheme.
307 Then switch to the process buffer."
308 (interactive "r")
309 (scheme-compile-region start end)
310 (switch-to-scheme t))
311
312 (defvar scheme-source-modes '(scheme-mode)
313 "*Used to determine if a buffer contains Scheme source code.
314 If it's loaded into a buffer that is in one of these major modes, it's
315 considered a scheme source file by scheme-load-file and scheme-compile-file.
316 Used by these commands to determine defaults.")
317
318 (defvar scheme-prev-l/c-dir/file nil
319 "Caches the last (directory . file) pair.
320 Caches the last pair used in the last scheme-load-file or
321 scheme-compile-file command. Used for determining the default in the
322 next one.")
323
324 (defun scheme-load-file (file-name)
325 "Load a Scheme file into the inferior Scheme process."
326 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file
327 scheme-source-modes t)) ; T because LOAD
328 ; needs an exact name
329 (comint-check-source file-name) ; Check to see if buffer needs saved.
330 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
331 (file-name-nondirectory file-name)))
332 (comint-send-string (scheme-proc) (concat "(load \""
333 file-name
334 "\"\)\n")))
335
336 (defun scheme-compile-file (file-name)
337 "Compile a Scheme file in the inferior Scheme process."
338 (interactive (comint-get-source "Compile Scheme file: "
339 scheme-prev-l/c-dir/file
340 scheme-source-modes
341 nil)) ; NIL because COMPILE doesn't
342 ; need an exact name.
343 (comint-check-source file-name) ; Check to see if buffer needs saved.
344 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
345 (file-name-nondirectory file-name)))
346 (comint-send-string (scheme-proc) (concat "(compile-file \""
347 file-name
348 "\"\)\n")))
349
350
351 (defvar scheme-buffer nil "*The current scheme process buffer.
352
353 MULTIPLE PROCESS SUPPORT
354 ===========================================================================
355 Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme
356 processes. To run multiple Scheme processes, you start the first up with
357 \\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer
358 with \\[rename-buffer]. You may now start up a new process with another
359 \\[run-scheme]. It will be in a new buffer, named *scheme*. You can
360 switch between the different process buffers with \\[switch-to-buffer].
361
362 Commands that send text from source buffers to Scheme processes --
363 like scheme-send-definition or scheme-compile-region -- have to choose a
364 process to send to, when you have more than one Scheme process around. This
365 is determined by the global variable scheme-buffer. Suppose you
366 have three inferior Schemes running:
367 Buffer Process
368 foo scheme
369 bar scheme<2>
370 *scheme* scheme<3>
371 If you do a \\[scheme-send-definition-and-go] command on some Scheme source
372 code, what process do you send it to?
373
374 - If you're in a process buffer (foo, bar, or *scheme*),
375 you send it to that process.
376 - If you're in some other buffer (e.g., a source file), you
377 send it to the process attached to buffer scheme-buffer.
378 This process selection is performed by function scheme-proc.
379
380 Whenever \\[run-scheme] fires up a new process, it resets scheme-buffer
381 to be the new process's buffer. If you only run one process, this will
382 do the right thing. If you run multiple processes, you can change
383 scheme-buffer to another process buffer with \\[set-variable].
384
385 More sophisticated approaches are, of course, possible. If you find yourself
386 needing to switch back and forth between multiple processes frequently,
387 you may wish to consider ilisp.el, a larger, more sophisticated package
388 for running inferior Lisp and Scheme processes. The approach taken here is
389 for a minimal, simple implementation. Feel free to extend it.")
390
391 (defun scheme-proc ()
392 "Returns the current scheme process. See variable scheme-buffer."
393 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-scheme-mode)
394 (current-buffer)
395 scheme-buffer))))
396 (or proc
397 (error "No current process. See variable scheme-buffer"))))
398
399
400 ;;; Do the user's customisation...
401
402 (defvar cmuscheme-load-hook nil
403 "This hook is run when cmuscheme is loaded in.
404 This is a good place to put keybindings.")
405
406 (run-hooks 'cmuscheme-load-hook)
407
408
409 ;;; CHANGE LOG 68 ;;; CHANGE LOG
410 ;;; =========================================================================== 69 ;;; ===========================================================================
411 ;;; 8/88 Olin 70 ;;; 8/88 Olin
412 ;;; Created. 71 ;;; Created.
413 ;;; 72 ;;;
430 ;;; 89 ;;;
431 ;;; 3/12/90 Olin 90 ;;; 3/12/90 Olin
432 ;;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme. 91 ;;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme.
433 ;;; Tale suggested this. 92 ;;; Tale suggested this.
434 93
94 ;;; Code:
95
96 (require 'scheme)
97 (require 'comint)
98
99 ;;; INFERIOR SCHEME MODE STUFF
100 ;;;============================================================================
101
102 (defvar inferior-scheme-mode-hook nil
103 "*Hook for customising inferior-scheme mode.")
104 (defvar inferior-scheme-mode-map nil)
105
106 (cond ((not inferior-scheme-mode-map)
107 (setq inferior-scheme-mode-map
108 (copy-keymap comint-mode-map))
109 (define-key inferior-scheme-mode-map "\M-\C-x" ;gnu convention
110 'scheme-send-definition)
111 (define-key inferior-scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp)
112 (define-key inferior-scheme-mode-map "\C-c\C-l" 'scheme-load-file)
113 (define-key inferior-scheme-mode-map "\C-c\C-k" 'scheme-compile-file)
114 (scheme-mode-commands inferior-scheme-mode-map)))
115
116 ;; Install the process communication commands in the scheme-mode keymap.
117 (define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
118 (define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention
119 (define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
120 (define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
121 (define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region)
122 (define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go)
123 (define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
124 (define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
125 (define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme)
126 (define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
127 (define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
128
129 (let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
130 (define-key map [separator-eval] '("--"))
131 (define-key map [compile-file]
132 '("Compile Scheme File" . scheme-compile-file))
133 (define-key map [load-file]
134 '("Load Scheme File" . scheme-load-file))
135 (define-key map [switch]
136 '("Switch to Scheme" . switch-to-scheme))
137 (define-key map [com-def-go]
138 '("Compile Definitiion & Go" . scheme-compile-definition-and-go))
139 (define-key map [com-def]
140 '("Compile Definitiion" . scheme-compile-definition))
141 (define-key map [send-def-go]
142 '("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
143 (define-key map [send-def]
144 '("Evaluate Last Definition" . scheme-send-definition))
145 (define-key map [send-region-go]
146 '("Evaluate Region & Go" . scheme-send-region-and-go))
147 (define-key map [send-region]
148 '("Evaluate Region" . scheme-send-region))
149 (define-key map [send-sexp]
150 '("Evaluate Last S-expression" . scheme-send-last-sexp))
151 )
152
153 (defvar scheme-buffer)
154
155 (defun inferior-scheme-mode ()
156 "Major mode for interacting with an inferior Scheme process.
157
158 The following commands are available:
159 \\{inferior-scheme-mode-map}
160
161 A Scheme process can be fired up with M-x run-scheme.
162
163 Customisation: Entry to this mode runs the hooks on comint-mode-hook and
164 inferior-scheme-mode-hook (in that order).
165
166 You can send text to the inferior Scheme process from other buffers containing
167 Scheme source.
168 switch-to-scheme switches the current buffer to the Scheme process buffer.
169 scheme-send-definition sends the current definition to the Scheme process.
170 scheme-compile-definition compiles the current definition.
171 scheme-send-region sends the current region to the Scheme process.
172 scheme-compile-region compiles the current region.
173
174 scheme-send-definition-and-go, scheme-compile-definition-and-go,
175 scheme-send-region-and-go, and scheme-compile-region-and-go
176 switch to the Scheme process buffer after sending their text.
177 For information on running multiple processes in multiple buffers, see
178 documentation for variable scheme-buffer.
179
180 Commands:
181 Return after the end of the process' output sends the text from the
182 end of process to point.
183 Return before the end of the process' output copies the sexp ending at point
184 to the end of the process' output, and sends it.
185 Delete converts tabs to spaces as it moves back.
186 Tab indents for Scheme; with argument, shifts rest
187 of expression rigidly with the current line.
188 C-M-q does Tab on each line starting within following expression.
189 Paragraphs are separated only by blank lines. Semicolons start comments.
190 If you accidentally suspend your process, use \\[comint-continue-subjob]
191 to continue it."
192 (interactive)
193 (comint-mode)
194 ;; Customise in inferior-scheme-mode-hook
195 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
196 (scheme-mode-variables)
197 (setq major-mode 'inferior-scheme-mode)
198 (setq mode-name "Inferior Scheme")
199 (setq mode-line-process '(":%s"))
200 (use-local-map inferior-scheme-mode-map)
201 (setq comint-input-filter (function scheme-input-filter))
202 (setq comint-get-old-input (function scheme-get-old-input))
203 (run-hooks 'inferior-scheme-mode-hook))
204
205 (defvar inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"
206 "*Input matching this regexp are not saved on the history list.
207 Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters.")
208
209 (defun scheme-input-filter (str)
210 "Don't save anything matching inferior-scheme-filter-regexp"
211 (not (string-match inferior-scheme-filter-regexp str)))
212
213 (defun scheme-get-old-input ()
214 "Snarf the sexp ending at point"
215 (save-excursion
216 (let ((end (point)))
217 (backward-sexp)
218 (buffer-substring (point) end))))
219
220 (defun scheme-args-to-list (string)
221 (let ((where (string-match "[ \t]" string)))
222 (cond ((null where) (list string))
223 ((not (= where 0))
224 (cons (substring string 0 where)
225 (scheme-args-to-list (substring string (+ 1 where)
226 (length string)))))
227 (t (let ((pos (string-match "[^ \t]" string)))
228 (if (null pos)
229 nil
230 (scheme-args-to-list (substring string pos
231 (length string)))))))))
232
233 (defvar scheme-program-name "scheme"
234 "*Program invoked by the run-scheme command")
235
236 ;;;###autoload
237 (defun run-scheme (cmd)
238 "Run an inferior Scheme process, input and output via buffer *scheme*.
239 If there is a process already running in `*scheme*', switch to that buffer.
240 With argument, allows you to edit the command line (default is value
241 of `scheme-program-name'). Runs the hooks `inferior-scheme-mode-hook'
242 \(after the `comint-mode-hook' is run).
243 \(Type \\[describe-mode] in the process buffer for a list of commands.)"
244
245 (interactive (list (if current-prefix-arg
246 (read-string "Run Scheme: " scheme-program-name)
247 scheme-program-name)))
248 (if (not (comint-check-proc "*scheme*"))
249 (let ((cmdlist (scheme-args-to-list cmd)))
250 (set-buffer (apply 'make-comint "scheme" (car cmdlist)
251 nil (cdr cmdlist)))
252 (inferior-scheme-mode)))
253 (setq scheme-program-name cmd)
254 (setq scheme-buffer "*scheme*")
255 (pop-to-buffer "*scheme*"))
256 ;;;###autoload (add-hook 'same-window-buffer-names "*scheme*")
257
258 (defun scheme-send-region (start end)
259 "Send the current region to the inferior Scheme process."
260 (interactive "r")
261 (comint-send-region (scheme-proc) start end)
262 (comint-send-string (scheme-proc) "\n"))
263
264 (defun scheme-send-definition ()
265 "Send the current definition to the inferior Scheme process."
266 (interactive)
267 (save-excursion
268 (end-of-defun)
269 (let ((end (point)))
270 (beginning-of-defun)
271 (scheme-send-region (point) end))))
272
273 (defun scheme-send-last-sexp ()
274 "Send the previous sexp to the inferior Scheme process."
275 (interactive)
276 (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
277
278 (defvar scheme-compile-exp-command "(compile '%s)"
279 "*Template for issuing commands to compile arbitrary Scheme expressions.")
280
281 (defun scheme-compile-region (start end)
282 "Compile the current region in the inferior Scheme process.
283 \(A BEGIN is wrapped around the region: (BEGIN <region>))"
284 (interactive "r")
285 (comint-send-string (scheme-proc) (format scheme-compile-exp-command
286 (format "(begin %s)"
287 (buffer-substring start end))))
288 (comint-send-string (scheme-proc) "\n"))
289
290 (defun scheme-compile-definition ()
291 "Compile the current definition in the inferior Scheme process."
292 (interactive)
293 (save-excursion
294 (end-of-defun)
295 (let ((end (point)))
296 (beginning-of-defun)
297 (scheme-compile-region (point) end))))
298
299 (defun switch-to-scheme (eob-p)
300 "Switch to the scheme process buffer.
301 With argument, positions cursor at end of buffer."
302 (interactive "P")
303 (if (get-buffer scheme-buffer)
304 (pop-to-buffer scheme-buffer)
305 (error "No current process buffer. See variable scheme-buffer."))
306 (cond (eob-p
307 (push-mark)
308 (goto-char (point-max)))))
309
310 (defun scheme-send-region-and-go (start end)
311 "Send the current region to the inferior Scheme process.
312 Then switch to the process buffer."
313 (interactive "r")
314 (scheme-send-region start end)
315 (switch-to-scheme t))
316
317 (defun scheme-send-definition-and-go ()
318 "Send the current definition to the inferior Scheme.
319 Then switch to the process buffer."
320 (interactive)
321 (scheme-send-definition)
322 (switch-to-scheme t))
323
324 (defun scheme-compile-definition-and-go ()
325 "Compile the current definition in the inferior Scheme.
326 Then switch to the process buffer."
327 (interactive)
328 (scheme-compile-definition)
329 (switch-to-scheme t))
330
331 (defun scheme-compile-region-and-go (start end)
332 "Compile the current region in the inferior Scheme.
333 Then switch to the process buffer."
334 (interactive "r")
335 (scheme-compile-region start end)
336 (switch-to-scheme t))
337
338 (defvar scheme-source-modes '(scheme-mode)
339 "*Used to determine if a buffer contains Scheme source code.
340 If it's loaded into a buffer that is in one of these major modes, it's
341 considered a scheme source file by scheme-load-file and scheme-compile-file.
342 Used by these commands to determine defaults.")
343
344 (defvar scheme-prev-l/c-dir/file nil
345 "Caches the last (directory . file) pair.
346 Caches the last pair used in the last scheme-load-file or
347 scheme-compile-file command. Used for determining the default in the
348 next one.")
349
350 (defun scheme-load-file (file-name)
351 "Load a Scheme file into the inferior Scheme process."
352 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file
353 scheme-source-modes t)) ; T because LOAD
354 ; needs an exact name
355 (comint-check-source file-name) ; Check to see if buffer needs saved.
356 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
357 (file-name-nondirectory file-name)))
358 (comint-send-string (scheme-proc) (concat "(load \""
359 file-name
360 "\"\)\n")))
361
362 (defun scheme-compile-file (file-name)
363 "Compile a Scheme file in the inferior Scheme process."
364 (interactive (comint-get-source "Compile Scheme file: "
365 scheme-prev-l/c-dir/file
366 scheme-source-modes
367 nil)) ; NIL because COMPILE doesn't
368 ; need an exact name.
369 (comint-check-source file-name) ; Check to see if buffer needs saved.
370 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
371 (file-name-nondirectory file-name)))
372 (comint-send-string (scheme-proc) (concat "(compile-file \""
373 file-name
374 "\"\)\n")))
375
376
377 (defvar scheme-buffer nil "*The current scheme process buffer.
378
379 MULTIPLE PROCESS SUPPORT
380 ===========================================================================
381 Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme
382 processes. To run multiple Scheme processes, you start the first up with
383 \\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer
384 with \\[rename-buffer]. You may now start up a new process with another
385 \\[run-scheme]. It will be in a new buffer, named *scheme*. You can
386 switch between the different process buffers with \\[switch-to-buffer].
387
388 Commands that send text from source buffers to Scheme processes --
389 like scheme-send-definition or scheme-compile-region -- have to choose a
390 process to send to, when you have more than one Scheme process around. This
391 is determined by the global variable scheme-buffer. Suppose you
392 have three inferior Schemes running:
393 Buffer Process
394 foo scheme
395 bar scheme<2>
396 *scheme* scheme<3>
397 If you do a \\[scheme-send-definition-and-go] command on some Scheme source
398 code, what process do you send it to?
399
400 - If you're in a process buffer (foo, bar, or *scheme*),
401 you send it to that process.
402 - If you're in some other buffer (e.g., a source file), you
403 send it to the process attached to buffer scheme-buffer.
404 This process selection is performed by function scheme-proc.
405
406 Whenever \\[run-scheme] fires up a new process, it resets scheme-buffer
407 to be the new process's buffer. If you only run one process, this will
408 do the right thing. If you run multiple processes, you can change
409 scheme-buffer to another process buffer with \\[set-variable].
410
411 More sophisticated approaches are, of course, possible. If you find yourself
412 needing to switch back and forth between multiple processes frequently,
413 you may wish to consider ilisp.el, a larger, more sophisticated package
414 for running inferior Lisp and Scheme processes. The approach taken here is
415 for a minimal, simple implementation. Feel free to extend it.")
416
417 (defun scheme-proc ()
418 "Returns the current scheme process. See variable scheme-buffer."
419 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-scheme-mode)
420 (current-buffer)
421 scheme-buffer))))
422 (or proc
423 (error "No current process. See variable scheme-buffer"))))
424
425
426 ;;; Do the user's customisation...
427
428 (defvar cmuscheme-load-hook nil
429 "This hook is run when cmuscheme is loaded in.
430 This is a good place to put keybindings.")
431
432 (run-hooks 'cmuscheme-load-hook)
433
435 (provide 'cmuscheme) 434 (provide 'cmuscheme)
436 435
437 ;;; cmuscheme.el ends here 436 ;;; cmuscheme.el ends here