Mercurial > emacs
annotate lisp/cmuscheme.el @ 98503:eaf4c07b3539
(EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 04 Oct 2008 13:13:47 +0000 |
parents | ee5932bf781d |
children | d42aff5ca541 |
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 |
74439 | 3 ;; Copyright (C) 1988, 1994, 1997, 2001, 2002, 2003, 2004, |
79721 | 4 ;; 2005, 2006, 2007, 2008 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 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
924 | 13 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
15 ;; (at your option) any later version. |
924 | 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 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
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 |
64787
d3ba08ae337e
(inferior-scheme-mode-hook, inferior-scheme-mode, scheme-prev-l/c-dir/file):
Juanma Barranquero <lekktu@gmail.com>
parents:
64786
diff
changeset
|
27 ;; This is a customization of comint-mode (see comint.el) |
14169 | 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. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
49 ;; |
14169 | 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. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
55 ;; |
14169 | 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. | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
61 ;; |
14169 | 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... | |
267 | 66 |
20601
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
67 ;;; CHANGE LOG |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
68 ;;; =========================================================================== |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
69 ;;; 8/88 Olin |
33482 | 70 ;;; Created. |
20601
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
71 ;;; |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
72 ;;; 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
|
73 ;;; 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
|
74 ;;; 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
|
75 ;;; 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
|
76 ;;; |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
77 ;;; 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
|
78 ;;; - 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
|
79 ;;; - 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
|
80 ;;; 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
|
81 ;;; has been removed. |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
82 ;;; - 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
|
83 ;;; (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
|
84 ;;; - 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
|
85 ;;; - 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
|
86 ;;; 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
|
87 ;;; of this facility. |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
88 ;;; |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
89 ;;; 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
|
90 ;;; - 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
|
91 ;;; Tale suggested this. |
97249de6bbfa
Move change log comment block so lm-commentary doesn't lose.
Dave Love <fx@gnu.org>
parents:
19997
diff
changeset
|
92 |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
93 ;;; Code: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
94 |
267 | 95 (require 'scheme) |
96 (require 'comint) | |
97 | |
21088 | 98 |
99 (defgroup cmuscheme nil | |
100 "Run a scheme process in a buffer." | |
33482 | 101 :group 'scheme) |
21088 | 102 |
267 | 103 ;;; INFERIOR SCHEME MODE STUFF |
104 ;;;============================================================================ | |
105 | |
21088 | 106 (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
|
107 "*Hook for customizing inferior-scheme mode." |
21088 | 108 :type 'hook |
109 :group 'cmuscheme) | |
110 | |
28066
95a07dc453f4
(inferior-scheme-mode-map): Define it independently
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
21088
diff
changeset
|
111 (defvar inferior-scheme-mode-map |
95a07dc453f4
(inferior-scheme-mode-map): Define it independently
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
21088
diff
changeset
|
112 (let ((m (make-sparse-keymap))) |
95a07dc453f4
(inferior-scheme-mode-map): Define it independently
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
21088
diff
changeset
|
113 (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
|
114 (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
|
115 (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
|
116 (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
|
117 (scheme-mode-commands m) |
95a07dc453f4
(inferior-scheme-mode-map): Define it independently
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
21088
diff
changeset
|
118 m)) |
267 | 119 |
120 ;; Install the process communication commands in the scheme-mode keymap. | |
121 (define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention | |
122 (define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention | |
123 (define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition) | |
124 (define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go) | |
125 (define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region) | |
126 (define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go) | |
127 (define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition) | |
128 (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
|
129 (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
|
130 (define-key scheme-mode-map "\C-c\C-x" 'scheme-expand-current-form) |
267 | 131 (define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme) |
132 (define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file) | |
133 (define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile" | |
134 | |
17354
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
135 (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
|
136 (define-key map [separator-eval] '("--")) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
137 (define-key map [compile-file] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
138 '("Compile Scheme File" . scheme-compile-file)) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
139 (define-key map [load-file] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
140 '("Load Scheme File" . scheme-load-file)) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
141 (define-key map [switch] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
142 '("Switch to Scheme" . switch-to-scheme)) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
143 (define-key map [com-def-go] |
57150
e8b02be78ea7
Typo in the menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
144 '("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
|
145 (define-key map [com-def] |
57150
e8b02be78ea7
Typo in the menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
146 '("Compile Definition" . scheme-compile-definition)) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
147 (define-key map [exp-form] |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
148 '("Expand current form" . scheme-expand-current-form)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
149 (define-key map [trace-proc] |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
150 '("Trace procedure" . scheme-trace-procedure)) |
17354
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
151 (define-key map [send-def-go] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
152 '("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
|
153 (define-key map [send-def] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
154 '("Evaluate Last Definition" . scheme-send-definition)) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
155 (define-key map [send-region-go] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
156 '("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
|
157 (define-key map [send-region] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
158 '("Evaluate Region" . scheme-send-region)) |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
159 (define-key map [send-sexp] |
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
160 '("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
|
161 ) |
17354
7c7aaf0aeedb
(scheme-mode-map): Add some menu items.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
162 |
1367
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
163 (defvar scheme-buffer) |
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
164 |
28066
95a07dc453f4
(inferior-scheme-mode-map): Define it independently
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
21088
diff
changeset
|
165 (define-derived-mode inferior-scheme-mode comint-mode "Inferior Scheme" |
267 | 166 "Major mode for interacting with an inferior Scheme process. |
167 | |
168 The following commands are available: | |
169 \\{inferior-scheme-mode-map} | |
170 | |
171 A Scheme process can be fired up with M-x run-scheme. | |
172 | |
64787
d3ba08ae337e
(inferior-scheme-mode-hook, inferior-scheme-mode, scheme-prev-l/c-dir/file):
Juanma Barranquero <lekktu@gmail.com>
parents:
64786
diff
changeset
|
173 Customization: Entry to this mode runs the hooks on comint-mode-hook and |
267 | 174 inferior-scheme-mode-hook (in that order). |
175 | |
176 You can send text to the inferior Scheme process from other buffers containing | |
33482 | 177 Scheme source. |
267 | 178 switch-to-scheme switches the current buffer to the Scheme process buffer. |
179 scheme-send-definition sends the current definition to the Scheme process. | |
180 scheme-compile-definition compiles the current definition. | |
181 scheme-send-region sends the current region to the Scheme process. | |
182 scheme-compile-region compiles the current region. | |
183 | |
184 scheme-send-definition-and-go, scheme-compile-definition-and-go, | |
185 scheme-send-region-and-go, and scheme-compile-region-and-go | |
186 switch to the Scheme process buffer after sending their text. | |
187 For information on running multiple processes in multiple buffers, see | |
188 documentation for variable scheme-buffer. | |
189 | |
190 Commands: | |
33482 | 191 Return after the end of the process' output sends the text from the |
267 | 192 end of process to point. |
193 Return before the end of the process' output copies the sexp ending at point | |
194 to the end of the process' output, and sends it. | |
195 Delete converts tabs to spaces as it moves back. | |
196 Tab indents for Scheme; with argument, shifts rest | |
197 of expression rigidly with the current line. | |
198 C-M-q does Tab on each line starting within following expression. | |
199 Paragraphs are separated only by blank lines. Semicolons start comments. | |
200 If you accidentally suspend your process, use \\[comint-continue-subjob] | |
201 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
|
202 ;; Customize in inferior-scheme-mode-hook |
5304 | 203 (setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,... |
267 | 204 (scheme-mode-variables) |
7070 | 205 (setq mode-line-process '(":%s")) |
267 | 206 (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
|
207 (setq comint-get-old-input (function scheme-get-old-input))) |
267 | 208 |
21088 | 209 (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
|
210 "*Input matching this regexp are not saved on the history list. |
21088 | 211 Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters." |
212 :type 'regexp | |
213 :group 'cmuscheme) | |
1367
475a8122e0a5
(inferior-scheme-filter-regexp):
Richard M. Stallman <rms@gnu.org>
parents:
1355
diff
changeset
|
214 |
267 | 215 (defun scheme-input-filter (str) |
33482 | 216 "Don't save anything matching `inferior-scheme-filter-regexp'." |
267 | 217 (not (string-match inferior-scheme-filter-regexp str))) |
218 | |
219 (defun scheme-get-old-input () | |
33482 | 220 "Snarf the sexp ending at point." |
267 | 221 (save-excursion |
222 (let ((end (point))) | |
223 (backward-sexp) | |
224 (buffer-substring (point) end)))) | |
225 | |
226 (defun scheme-args-to-list (string) | |
227 (let ((where (string-match "[ \t]" string))) | |
228 (cond ((null where) (list string)) | |
229 ((not (= where 0)) | |
230 (cons (substring string 0 where) | |
231 (scheme-args-to-list (substring string (+ 1 where) | |
232 (length string))))) | |
233 (t (let ((pos (string-match "[^ \t]" string))) | |
234 (if (null pos) | |
235 nil | |
236 (scheme-args-to-list (substring string pos | |
237 (length string))))))))) | |
238 | |
9589
2bee58e79145
(run-scheme): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
9538
diff
changeset
|
239 ;;;###autoload |
267 | 240 (defun run-scheme (cmd) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
241 "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
|
242 If there is a process already running in `*scheme*', switch to that buffer. |
267 | 243 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
|
244 of `scheme-program-name'). |
74445
d26696d58462
(run-scheme, scheme-start-file): Search the start file in ~/.emacs.d
Juanma Barranquero <lekktu@gmail.com>
parents:
74439
diff
changeset
|
245 If the file `~/.emacs_SCHEMENAME' or `~/.emacs.d/init_SCHEMENAME.scm' exists, |
d26696d58462
(run-scheme, scheme-start-file): Search the start file in ~/.emacs.d
Juanma Barranquero <lekktu@gmail.com>
parents:
74439
diff
changeset
|
246 it is given as initial input. |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
247 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
|
248 discards input when it starts up. |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
249 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
|
250 is run). |
267 | 251 \(Type \\[describe-mode] in the process buffer for a list of commands.)" |
252 | |
253 (interactive (list (if current-prefix-arg | |
33482 | 254 (read-string "Run Scheme: " scheme-program-name) |
255 scheme-program-name))) | |
267 | 256 (if (not (comint-check-proc "*scheme*")) |
257 (let ((cmdlist (scheme-args-to-list cmd))) | |
258 (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
|
259 (scheme-start-file (car cmdlist)) (cdr cmdlist))) |
267 | 260 (inferior-scheme-mode))) |
33482 | 261 (setq scheme-program-name cmd) |
267 | 262 (setq scheme-buffer "*scheme*") |
12867
26e4b5392530
(run-scheme): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
9589
diff
changeset
|
263 (pop-to-buffer "*scheme*")) |
26e4b5392530
(run-scheme): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
9589
diff
changeset
|
264 ;;;###autoload (add-hook 'same-window-buffer-names "*scheme*") |
267 | 265 |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
266 (defun scheme-start-file (prog) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
267 "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
|
268 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
|
269 order. Return nil if no start file found." |
74521
3fccc1870d62
(scheme-start-file): Use `let*', not `let'.
Eli Zaretskii <eliz@gnu.org>
parents:
74445
diff
changeset
|
270 (let* ((progname (file-name-nondirectory prog)) |
3fccc1870d62
(scheme-start-file): Use `let*', not `let'.
Eli Zaretskii <eliz@gnu.org>
parents:
74445
diff
changeset
|
271 (start-file (concat "~/.emacs_" progname)) |
81339
d8ee6aceb564
(scheme-start-file): Use user-emacs-directory.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
272 (alt-start-file (concat user-emacs-directory "init_" progname ".scm"))) |
64745
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 |
74445
d26696d58462
(run-scheme, scheme-start-file): Search the start file in ~/.emacs.d
Juanma Barranquero <lekktu@gmail.com>
parents:
74439
diff
changeset
|
275 (and (file-exists-p alt-start-file) alt-start-file)))) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
276 |
267 | 277 (defun scheme-send-region (start end) |
278 "Send the current region to the inferior Scheme process." | |
279 (interactive "r") | |
280 (comint-send-region (scheme-proc) start end) | |
281 (comint-send-string (scheme-proc) "\n")) | |
282 | |
283 (defun scheme-send-definition () | |
284 "Send the current definition to the inferior Scheme process." | |
285 (interactive) | |
286 (save-excursion | |
287 (end-of-defun) | |
288 (let ((end (point))) | |
289 (beginning-of-defun) | |
290 (scheme-send-region (point) end)))) | |
291 | |
292 (defun scheme-send-last-sexp () | |
293 "Send the previous sexp to the inferior Scheme process." | |
294 (interactive) | |
295 (scheme-send-region (save-excursion (backward-sexp) (point)) (point))) | |
296 | |
21088 | 297 (defcustom scheme-compile-exp-command "(compile '%s)" |
298 "*Template for issuing commands to compile arbitrary Scheme expressions." | |
299 :type 'string | |
300 :group 'cmuscheme) | |
267 | 301 |
302 (defun scheme-compile-region (start end) | |
1355 | 303 "Compile the current region in the inferior Scheme process. |
267 | 304 \(A BEGIN is wrapped around the region: (BEGIN <region>))" |
305 (interactive "r") | |
306 (comint-send-string (scheme-proc) (format scheme-compile-exp-command | |
307 (format "(begin %s)" | |
308 (buffer-substring start end)))) | |
309 (comint-send-string (scheme-proc) "\n")) | |
310 | |
311 (defun scheme-compile-definition () | |
312 "Compile the current definition in the inferior Scheme process." | |
313 (interactive) | |
314 (save-excursion | |
315 (end-of-defun) | |
316 (let ((end (point))) | |
317 (beginning-of-defun) | |
318 (scheme-compile-region (point) end)))) | |
319 | |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
320 (defcustom scheme-trace-command "(trace %s)" |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
321 "*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
|
322 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
|
323 For PLT-Scheme, e.g., one should use |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
324 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
325 (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
|
326 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
327 For Scheme 48 and Scsh use \",trace %s\"." |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
328 :type 'string |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
329 :group 'cmuscheme) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
330 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
331 (defcustom scheme-untrace-command "(untrace %s)" |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
332 "*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
|
333 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
|
334 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
335 :type 'string |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
336 :group 'cmuscheme) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
337 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
338 (defun scheme-trace-procedure (proc &optional untrace) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
339 "Trace procedure PROC in the inferior Scheme process. |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
340 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
|
341 (interactive |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
342 (list (let ((current (symbol-at-point)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
343 (action (if current-prefix-arg "Untrace" "Trace"))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
344 (if current |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
345 (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
|
346 (read-string (format "%s procedure: " action)))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
347 current-prefix-arg)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
348 (when (= (length proc) 0) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
349 (error "Invalid procedure name")) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
350 (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
|
351 (format |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
352 (if untrace scheme-untrace-command scheme-trace-command) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
353 proc)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
354 (comint-send-string (scheme-proc) "\n")) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
355 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
356 (defcustom scheme-macro-expand-command "(expand %s)" |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
357 "*Template for macro-expanding a Scheme form. |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
358 For Scheme 48 and Scsh use \",expand %s\"." |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
359 :type 'string |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
360 :group 'cmuscheme) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
361 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
362 (defun scheme-expand-current-form () |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
363 "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
|
364 (interactive) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
365 (let ((current-form (scheme-form-at-point))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
366 (if current-form |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
367 (progn |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
368 (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
|
369 (format |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
370 scheme-macro-expand-command |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
371 current-form)) |
64786
871d0952aeb3
(scheme-start-file): Replace reference to `user-emacs-directory' by
Juanma Barranquero <lekktu@gmail.com>
parents:
64762
diff
changeset
|
372 (comint-send-string (scheme-proc) "\n")) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
373 (error "Not at a form")))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
374 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
375 (defun scheme-form-at-point () |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
376 (let ((next-sexp (thing-at-point 'sexp))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
377 (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
|
378 next-sexp |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
379 (save-excursion |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
380 (backward-up-list) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
381 (scheme-form-at-point))))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
382 |
267 | 383 (defun switch-to-scheme (eob-p) |
384 "Switch to the scheme process buffer. | |
33482 | 385 With argument, position cursor at end of buffer." |
267 | 386 (interactive "P") |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
387 (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
|
388 (scheme-interactively-start-process)) |
267 | 389 (pop-to-buffer scheme-buffer) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
390 (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
|
391 (when eob-p |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
392 (push-mark) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
393 (goto-char (point-max)))) |
267 | 394 |
395 (defun scheme-send-region-and-go (start end) | |
1355 | 396 "Send the current region to the inferior Scheme process. |
397 Then switch to the process buffer." | |
267 | 398 (interactive "r") |
399 (scheme-send-region start end) | |
400 (switch-to-scheme t)) | |
401 | |
402 (defun scheme-send-definition-and-go () | |
33482 | 403 "Send the current definition to the inferior Scheme. |
1355 | 404 Then switch to the process buffer." |
267 | 405 (interactive) |
406 (scheme-send-definition) | |
407 (switch-to-scheme t)) | |
408 | |
409 (defun scheme-compile-definition-and-go () | |
33482 | 410 "Compile the current definition in the inferior Scheme. |
1355 | 411 Then switch to the process buffer." |
267 | 412 (interactive) |
413 (scheme-compile-definition) | |
414 (switch-to-scheme t)) | |
415 | |
416 (defun scheme-compile-region-and-go (start end) | |
33482 | 417 "Compile the current region in the inferior Scheme. |
1355 | 418 Then switch to the process buffer." |
267 | 419 (interactive "r") |
420 (scheme-compile-region start end) | |
421 (switch-to-scheme t)) | |
422 | |
21088 | 423 (defcustom scheme-source-modes '(scheme-mode) |
267 | 424 "*Used to determine if a buffer contains Scheme source code. |
425 If it's loaded into a buffer that is in one of these major modes, it's | |
33482 | 426 considered a scheme source file by `scheme-load-file' and `scheme-compile-file'. |
21088 | 427 Used by these commands to determine defaults." |
428 :type '(repeat function) | |
429 :group 'cmuscheme) | |
267 | 430 |
431 (defvar scheme-prev-l/c-dir/file nil | |
1355 | 432 "Caches the last (directory . file) pair. |
33482 | 433 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
|
434 `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
|
435 in the next one.") |
267 | 436 |
437 (defun scheme-load-file (file-name) | |
33482 | 438 "Load a Scheme file FILE-NAME into the inferior Scheme process." |
267 | 439 (interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file |
42205 | 440 scheme-source-modes t)) ; t because `load' |
267 | 441 ; needs an exact name |
442 (comint-check-source file-name) ; Check to see if buffer needs saved. | |
443 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name) | |
444 (file-name-nondirectory file-name))) | |
445 (comint-send-string (scheme-proc) (concat "(load \"" | |
446 file-name | |
447 "\"\)\n"))) | |
448 | |
449 (defun scheme-compile-file (file-name) | |
33482 | 450 "Compile a Scheme file FILE-NAME in the inferior Scheme process." |
267 | 451 (interactive (comint-get-source "Compile Scheme file: " |
452 scheme-prev-l/c-dir/file | |
453 scheme-source-modes | |
42205 | 454 nil)) ; nil because COMPILE doesn't |
267 | 455 ; need an exact name. |
456 (comint-check-source file-name) ; Check to see if buffer needs saved. | |
457 (setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name) | |
458 (file-name-nondirectory file-name))) | |
459 (comint-send-string (scheme-proc) (concat "(compile-file \"" | |
460 file-name | |
461 "\"\)\n"))) | |
462 | |
463 | |
464 (defvar scheme-buffer nil "*The current scheme process buffer. | |
465 | |
466 MULTIPLE PROCESS SUPPORT | |
467 =========================================================================== | |
468 Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme | |
33482 | 469 processes. To run multiple Scheme processes, you start the first up with |
470 \\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer | |
471 with \\[rename-buffer]. You may now start up a new process with another | |
472 \\[run-scheme]. It will be in a new buffer, named *scheme*. You can | |
267 | 473 switch between the different process buffers with \\[switch-to-buffer]. |
474 | |
475 Commands that send text from source buffers to Scheme processes -- | |
33482 | 476 like `scheme-send-definition' or `scheme-compile-region' -- have to choose a |
477 process to send to, when you have more than one Scheme process around. This | |
478 is determined by the global variable `scheme-buffer'. Suppose you | |
267 | 479 have three inferior Schemes running: |
480 Buffer Process | |
481 foo scheme | |
482 bar scheme<2> | |
483 *scheme* scheme<3> | |
484 If you do a \\[scheme-send-definition-and-go] command on some Scheme source | |
485 code, what process do you send it to? | |
486 | |
33482 | 487 - If you're in a process buffer (foo, bar, or *scheme*), |
267 | 488 you send it to that process. |
489 - If you're in some other buffer (e.g., a source file), you | |
33482 | 490 send it to the process attached to buffer `scheme-buffer'. |
491 This process selection is performed by function `scheme-proc'. | |
267 | 492 |
33482 | 493 Whenever \\[run-scheme] fires up a new process, it resets `scheme-buffer' |
494 to be the new process's buffer. If you only run one process, this will | |
495 do the right thing. If you run multiple processes, you can change | |
496 `scheme-buffer' to another process buffer with \\[set-variable]. | |
267 | 497 |
33482 | 498 More sophisticated approaches are, of course, possible. If you find yourself |
267 | 499 needing to switch back and forth between multiple processes frequently, |
500 you may wish to consider ilisp.el, a larger, more sophisticated package | |
33482 | 501 for running inferior Lisp and Scheme processes. The approach taken here is |
502 for a minimal, simple implementation. Feel free to extend it.") | |
267 | 503 |
504 (defun scheme-proc () | |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
505 "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
|
506 See variable `scheme-buffer'." |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
507 (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
|
508 (get-buffer scheme-buffer) |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
509 (comint-check-proc scheme-buffer)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
510 (scheme-interactively-start-process)) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
511 (or (scheme-get-process) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
512 (error "No current process. See variable `scheme-buffer'"))) |
267 | 513 |
64745
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
514 (defun scheme-get-process () |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
515 "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
|
516 (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
|
517 (current-buffer) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
518 scheme-buffer))) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
519 |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
520 (defun scheme-interactively-start-process (&optional cmd) |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
521 "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
|
522 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
|
523 command to run." |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
524 (save-window-excursion |
cd4c4b49a4c2
(scheme-trace-command, scheme-untrace-command)
Eli Zaretskii <eliz@gnu.org>
parents:
64091
diff
changeset
|
525 (run-scheme (read-string "Run Scheme: " scheme-program-name)))) |
267 | 526 |
64787
d3ba08ae337e
(inferior-scheme-mode-hook, inferior-scheme-mode, scheme-prev-l/c-dir/file):
Juanma Barranquero <lekktu@gmail.com>
parents:
64786
diff
changeset
|
527 ;;; Do the user's customization... |
267 | 528 |
21088 | 529 (defcustom cmuscheme-load-hook nil |
267 | 530 "This hook is run when cmuscheme is loaded in. |
21088 | 531 This is a good place to put keybindings." |
532 :type 'hook | |
533 :group 'cmuscheme) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
534 |
267 | 535 (run-hooks 'cmuscheme-load-hook) |
536 | |
584 | 537 (provide 'cmuscheme) |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
538 |
57150
e8b02be78ea7
Typo in the menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
539 ;; arch-tag: e8795f4a-c496-45a2-97b4-8e0f2a2c57d2 |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
540 ;;; cmuscheme.el ends here |