Mercurial > emacs
annotate lisp/cmuscheme.el @ 9569:943acba6d366
(set-face-stipple): New function.
(set-face-background-pixmap): An alias for that.
(face-stipple): New function.
(face-background-pixmap): An alias for that.
(copy-face, face-equal, face-differs-from-default-p)
(make-face-x-resource-internal): Handle stipple bitmaps.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 17 Oct 1994 07:31:52 +0000 |
parents | 5c6da502d9a5 |
children | 2bee58e79145 |
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))) | |
9538
5c6da502d9a5
(run-scheme): Set scheme-program-name.
Richard M. Stallman <rms@gnu.org>
parents:
9057
diff
changeset
|
237 (setq scheme-program-name cmd) |
267 | 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) | |
1355 | 266 "Compile the current region in the inferior Scheme process. |
267 | 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. | |
285 With 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) | |
1355 | 295 "Send the current region to the inferior Scheme process. |
296 Then switch to the process buffer." | |
267 | 297 (interactive "r") |
298 (scheme-send-region start end) | |
299 (switch-to-scheme t)) | |
300 | |
301 (defun scheme-send-definition-and-go () | |
1355 | 302 "Send the current definition to the inferior Scheme. |
303 Then switch to the process buffer." | |
267 | 304 (interactive) |
305 (scheme-send-definition) | |
306 (switch-to-scheme t)) | |
307 | |
308 (defun scheme-compile-definition-and-go () | |
1355 | 309 "Compile the current definition in the inferior Scheme. |
310 Then switch to the process buffer." | |
267 | 311 (interactive) |
312 (scheme-compile-definition) | |
313 (switch-to-scheme t)) | |
314 | |
315 (defun scheme-compile-region-and-go (start end) | |
1355 | 316 "Compile the current region in the inferior Scheme. |
317 Then switch to the process buffer." | |
267 | 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. | |
324 If it's loaded into a buffer that is in one of these major modes, it's | |
325 considered a scheme source file by scheme-load-file and scheme-compile-file. | |
326 Used by these commands to determine defaults.") | |
327 | |
328 (defvar scheme-prev-l/c-dir/file nil | |
1355 | 329 "Caches the last (directory . file) pair. |
330 Caches the last pair used in the last scheme-load-file or | |
267 | 331 scheme-compile-file command. Used for determining the default in the |
332 next 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 | |
361 (defvar scheme-buffer nil "*The current scheme process buffer. | |
362 | |
363 MULTIPLE PROCESS SUPPORT | |
364 =========================================================================== | |
365 Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme | |
366 processes. 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 | |
368 with \\[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 | |
370 switch between the different process buffers with \\[switch-to-buffer]. | |
371 | |
372 Commands that send text from source buffers to Scheme processes -- | |
373 like scheme-send-definition or scheme-compile-region -- have to choose a | |
374 process to send to, when you have more than one Scheme process around. This | |
375 is determined by the global variable scheme-buffer. Suppose you | |
376 have three inferior Schemes running: | |
377 Buffer Process | |
378 foo scheme | |
379 bar scheme<2> | |
380 *scheme* scheme<3> | |
381 If you do a \\[scheme-send-definition-and-go] command on some Scheme source | |
382 code, 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. | |
388 This process selection is performed by function scheme-proc. | |
389 | |
390 Whenever \\[run-scheme] fires up a new process, it resets scheme-buffer | |
391 to be the new process's buffer. If you only run one process, this will | |
392 do the right thing. If you run multiple processes, you can change | |
393 scheme-buffer to another process buffer with \\[set-variable]. | |
394 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
395 More sophisticated approaches are, of course, possible. If you find yourself |
267 | 396 needing to switch back and forth between multiple processes frequently, |
397 you may wish to consider ilisp.el, a larger, more sophisticated package | |
398 for running inferior Lisp and Scheme processes. The approach taken here is | |
399 for 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. | |
414 This 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. | |
584 | 444 |
445 (provide 'cmuscheme) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
446 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
447 ;;; cmuscheme.el ends here |