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