Mercurial > emacs
annotate lisp/cmuscheme.el @ 9435:3a157cdf395c
(Lisp_Misc): new type code, replacing Lisp_Marker (and soon to replace other
type codes as well).
(XMARKER, SETMARKER, MARKERP): Check/set the new type field.
(XMISC, SETMISC, MISCP): New accessor macros for the superset type.
(struct Lisp_Free): New structure.
(Lisp_Misc_Free): Type code for that structure.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 11 Oct 1994 07:45:20 +0000 |
parents | eee647e8ca9e |
children | 5c6da502d9a5 |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1367
diff
changeset
|
1 ;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el. |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1367
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1988, 1994 Free Software Foundation, Inc. |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
4 |
798
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
795
diff
changeset
|
5 ;; Author: Olin Shivers <olin.shivers@cs.cmu.edu> |
6188
599aa761e6be
(inferior-scheme-mode): Removed unnecessary
Richard M. Stallman <rms@gnu.org>
parents:
6149
diff
changeset
|
6 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2229
diff
changeset
|
7 ;; Keywords: processes, lisp |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
8 |
924 | 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. | |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 ;;; Commentary: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 |
267 | 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 ;; | |
71 ;; ; Autoload run-scheme from file cmuscheme.el | |
72 ;; (autoload 'run-scheme "cmuscheme" | |
73 ;; "Run an inferior Scheme process." | |
74 ;; t) | |
75 ;; | |
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 | |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
96 ;;; Code: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
97 |
267 | 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 | |
6149
a093cbbdf14d
(inferior-scheme-mode-map): Use copy-keymap.
Richard M. Stallman <rms@gnu.org>
parents:
5304
diff
changeset
|
110 (copy-keymap comint-mode-map)) |
267 | 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 | |
1367
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
131 (defvar scheme-buffer) |
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
132 |
267 | 133 (defun inferior-scheme-mode () |
134 "Major mode for interacting with an inferior Scheme process. | |
135 | |
136 The following commands are available: | |
137 \\{inferior-scheme-mode-map} | |
138 | |
139 A Scheme process can be fired up with M-x run-scheme. | |
140 | |
141 Customisation: Entry to this mode runs the hooks on comint-mode-hook and | |
142 inferior-scheme-mode-hook (in that order). | |
143 | |
144 You can send text to the inferior Scheme process from other buffers containing | |
145 Scheme 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. | |
155 For information on running multiple processes in multiple buffers, see | |
156 documentation for variable scheme-buffer. | |
157 | |
158 Commands: | |
159 Return after the end of the process' output sends the text from the | |
160 end of process to point. | |
161 Return before the end of the process' output copies the sexp ending at point | |
162 to the end of the process' output, and sends it. | |
163 Delete converts tabs to spaces as it moves back. | |
164 Tab indents for Scheme; with argument, shifts rest | |
165 of expression rigidly with the current line. | |
166 C-M-q does Tab on each line starting within following expression. | |
167 Paragraphs are separated only by blank lines. Semicolons start comments. | |
168 If you accidentally suspend your process, use \\[comint-continue-subjob] | |
169 to continue it." | |
170 (interactive) | |
171 (comint-mode) | |
172 ;; Customise in inferior-scheme-mode-hook | |
5304 | 173 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,... |
267 | 174 (scheme-mode-variables) |
175 (setq major-mode 'inferior-scheme-mode) | |
176 (setq mode-name "Inferior Scheme") | |
7070 | 177 (setq mode-line-process '(":%s")) |
267 | 178 (use-local-map inferior-scheme-mode-map) |
179 (setq comint-input-filter (function scheme-input-filter)) | |
180 (setq comint-get-old-input (function scheme-get-old-input)) | |
181 (run-hooks 'inferior-scheme-mode-hook)) | |
182 | |
1367
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
183 (defvar inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'" |
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
184 "*Input matching this regexp are not saved on the history list. |
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
185 Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters.") |
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
186 |
267 | 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 | |
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*. | |
223 If there is a process already running in *scheme*, just switch to that buffer. | |
224 With argument, allows you to edit the command line (default is value | |
225 of 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))) | |
237 (setq scheme-buffer "*scheme*") | |
238 (switch-to-buffer "*scheme*")) | |
239 | |
240 | |
241 (defun scheme-send-region (start end) | |
242 "Send the current region to the inferior Scheme process." | |
243 (interactive "r") | |
244 (comint-send-region (scheme-proc) start end) | |
245 (comint-send-string (scheme-proc) "\n")) | |
246 | |
247 (defun scheme-send-definition () | |
248 "Send the current definition to the inferior Scheme process." | |
249 (interactive) | |
250 (save-excursion | |
251 (end-of-defun) | |
252 (let ((end (point))) | |
253 (beginning-of-defun) | |
254 (scheme-send-region (point) end)))) | |
255 | |
256 (defun scheme-send-last-sexp () | |
257 "Send the previous sexp to the inferior Scheme process." | |
258 (interactive) | |
259 (scheme-send-region (save-excursion (backward-sexp) (point)) (point))) | |
260 | |
261 (defvar scheme-compile-exp-command "(compile '%s)" | |
262 "*Template for issuing commands to compile arbitrary Scheme expressions.") | |
263 | |
264 (defun scheme-compile-region (start end) | |
1355 | 265 "Compile the current region in the inferior Scheme process. |
267 | 266 \(A BEGIN is wrapped around the region: (BEGIN <region>))" |
267 (interactive "r") | |
268 (comint-send-string (scheme-proc) (format scheme-compile-exp-command | |
269 (format "(begin %s)" | |
270 (buffer-substring start end)))) | |
271 (comint-send-string (scheme-proc) "\n")) | |
272 | |
273 (defun scheme-compile-definition () | |
274 "Compile the current definition in the inferior Scheme process." | |
275 (interactive) | |
276 (save-excursion | |
277 (end-of-defun) | |
278 (let ((end (point))) | |
279 (beginning-of-defun) | |
280 (scheme-compile-region (point) end)))) | |
281 | |
282 (defun switch-to-scheme (eob-p) | |
283 "Switch to the scheme process buffer. | |
284 With argument, positions cursor at end of buffer." | |
285 (interactive "P") | |
286 (if (get-buffer scheme-buffer) | |
287 (pop-to-buffer scheme-buffer) | |
288 (error "No current process buffer. See variable scheme-buffer.")) | |
289 (cond (eob-p | |
290 (push-mark) | |
291 (goto-char (point-max))))) | |
292 | |
293 (defun scheme-send-region-and-go (start end) | |
1355 | 294 "Send the current region to the inferior Scheme process. |
295 Then switch to the process buffer." | |
267 | 296 (interactive "r") |
297 (scheme-send-region start end) | |
298 (switch-to-scheme t)) | |
299 | |
300 (defun scheme-send-definition-and-go () | |
1355 | 301 "Send the current definition to the inferior Scheme. |
302 Then switch to the process buffer." | |
267 | 303 (interactive) |
304 (scheme-send-definition) | |
305 (switch-to-scheme t)) | |
306 | |
307 (defun scheme-compile-definition-and-go () | |
1355 | 308 "Compile the current definition in the inferior Scheme. |
309 Then switch to the process buffer." | |
267 | 310 (interactive) |
311 (scheme-compile-definition) | |
312 (switch-to-scheme t)) | |
313 | |
314 (defun scheme-compile-region-and-go (start end) | |
1355 | 315 "Compile the current region in the inferior Scheme. |
316 Then switch to the process buffer." | |
267 | 317 (interactive "r") |
318 (scheme-compile-region start end) | |
319 (switch-to-scheme t)) | |
320 | |
321 (defvar scheme-source-modes '(scheme-mode) | |
322 "*Used to determine if a buffer contains Scheme source code. | |
323 If it's loaded into a buffer that is in one of these major modes, it's | |
324 considered a scheme source file by scheme-load-file and scheme-compile-file. | |
325 Used by these commands to determine defaults.") | |
326 | |
327 (defvar scheme-prev-l/c-dir/file nil | |
1355 | 328 "Caches the last (directory . file) pair. |
329 Caches the last pair used in the last scheme-load-file or | |
267 | 330 scheme-compile-file command. Used for determining the default in the |
331 next one.") | |
332 | |
333 (defun scheme-load-file (file-name) | |
334 "Load a Scheme file into the inferior Scheme process." | |
335 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file | |
336 scheme-source-modes t)) ; T because LOAD | |
337 ; needs an exact name | |
338 (comint-check-source file-name) ; Check to see if buffer needs saved. | |
339 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name) | |
340 (file-name-nondirectory file-name))) | |
341 (comint-send-string (scheme-proc) (concat "(load \"" | |
342 file-name | |
343 "\"\)\n"))) | |
344 | |
345 (defun scheme-compile-file (file-name) | |
346 "Compile a Scheme file in the inferior Scheme process." | |
347 (interactive (comint-get-source "Compile Scheme file: " | |
348 scheme-prev-l/c-dir/file | |
349 scheme-source-modes | |
350 nil)) ; NIL because COMPILE doesn't | |
351 ; need an exact name. | |
352 (comint-check-source file-name) ; Check to see if buffer needs saved. | |
353 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name) | |
354 (file-name-nondirectory file-name))) | |
355 (comint-send-string (scheme-proc) (concat "(compile-file \"" | |
356 file-name | |
357 "\"\)\n"))) | |
358 | |
359 | |
360 (defvar scheme-buffer nil "*The current scheme process buffer. | |
361 | |
362 MULTIPLE PROCESS SUPPORT | |
363 =========================================================================== | |
364 Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme | |
365 processes. To run multiple Scheme processes, you start the first up with | |
366 \\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer | |
367 with \\[rename-buffer]. You may now start up a new process with another | |
368 \\[run-scheme]. It will be in a new buffer, named *scheme*. You can | |
369 switch between the different process buffers with \\[switch-to-buffer]. | |
370 | |
371 Commands that send text from source buffers to Scheme processes -- | |
372 like scheme-send-definition or scheme-compile-region -- have to choose a | |
373 process to send to, when you have more than one Scheme process around. This | |
374 is determined by the global variable scheme-buffer. Suppose you | |
375 have three inferior Schemes running: | |
376 Buffer Process | |
377 foo scheme | |
378 bar scheme<2> | |
379 *scheme* scheme<3> | |
380 If you do a \\[scheme-send-definition-and-go] command on some Scheme source | |
381 code, what process do you send it to? | |
382 | |
383 - If you're in a process buffer (foo, bar, or *scheme*), | |
384 you send it to that process. | |
385 - If you're in some other buffer (e.g., a source file), you | |
386 send it to the process attached to buffer scheme-buffer. | |
387 This process selection is performed by function scheme-proc. | |
388 | |
389 Whenever \\[run-scheme] fires up a new process, it resets scheme-buffer | |
390 to be the new process's buffer. If you only run one process, this will | |
391 do the right thing. If you run multiple processes, you can change | |
392 scheme-buffer to another process buffer with \\[set-variable]. | |
393 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
394 More sophisticated approaches are, of course, possible. If you find yourself |
267 | 395 needing to switch back and forth between multiple processes frequently, |
396 you may wish to consider ilisp.el, a larger, more sophisticated package | |
397 for running inferior Lisp and Scheme processes. The approach taken here is | |
398 for a minimal, simple implementation. Feel free to extend it.") | |
399 | |
400 (defun scheme-proc () | |
401 "Returns the current scheme process. See variable scheme-buffer." | |
402 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-scheme-mode) | |
403 (current-buffer) | |
404 scheme-buffer)))) | |
405 (or proc | |
406 (error "No current process. See variable scheme-buffer")))) | |
407 | |
408 | |
409 ;;; Do the user's customisation... | |
410 | |
411 (defvar cmuscheme-load-hook nil | |
412 "This hook is run when cmuscheme is loaded in. | |
413 This is a good place to put keybindings.") | |
414 | |
415 (run-hooks 'cmuscheme-load-hook) | |
416 | |
417 | |
418 ;;; CHANGE LOG | |
419 ;;; =========================================================================== | |
420 ;;; 8/88 Olin | |
421 ;;; Created. | |
422 ;;; | |
423 ;;; 2/15/89 Olin | |
424 ;;; Removed -emacs flag from process invocation. It's only useful for | |
425 ;;; cscheme, and makes cscheme assume it's running under xscheme.el, | |
426 ;;; which messes things up royally. A bug. | |
427 ;;; | |
428 ;;; 5/22/90 Olin | |
429 ;;; - Upgraded to use comint-send-string and comint-send-region. | |
430 ;;; - run-scheme now offers to let you edit the command line if | |
431 ;;; you invoke it with a prefix-arg. M-x scheme is redundant, and | |
432 ;;; has been removed. | |
433 ;;; - Explicit references to process "scheme" have been replaced with | |
434 ;;; (scheme-proc). This allows better handling of multiple process bufs. | |
435 ;;; - Added scheme-send-last-sexp, bound to C-x C-e. A gnu convention. | |
436 ;;; - Have not added process query facility a la cmulisp.el's lisp-show-arglist | |
437 ;;; and friends, but interested hackers might find a useful application | |
438 ;;; of this facility. | |
439 ;;; | |
440 ;;; 3/12/90 Olin | |
441 ;;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme. | |
442 ;;; Tale suggested this. | |
584 | 443 |
444 (provide 'cmuscheme) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
445 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
446 ;;; cmuscheme.el ends here |