Mercurial > emacs
annotate lisp/progmodes/inf-lisp.el @ 111473:1e95f3ea022d
Add const to array elements of font filter properties.
* font.c (font_filter_properties): Add const to array elements of properties args.
* font.h (font_filter_properties): Likewise.
* ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array elements.
* w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Wed, 10 Nov 2010 18:02:54 +0900 |
parents | cc035ccb9275 |
children | b47e85affa59 |
rev | line source |
---|---|
835 | 1 ;;; inf-lisp.el --- an inferior-lisp mode |
14169 | 2 |
106815 | 3 ;; Copyright (C) 1988, 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
64699
629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
Nick Roberts <nickrob@snap.net.nz>
parents:
64085
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
836
diff
changeset
|
5 |
798
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
6 ;; Author: Olin Shivers <shivers@cs.cmu.edu> |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
957
diff
changeset
|
7 ;; Keywords: processes, lisp |
798
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
8 |
14169 | 9 ;; This file is part of GNU Emacs. |
835 | 10 |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
14169 | 12 ;; it under the terms of the GNU General Public License as published by |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
835 | 15 |
14169 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
835 | 20 |
14169 | 21 ;; You should have received a copy of the GNU General Public License |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
267 | 23 |
798
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
24 ;;; Commentary: |
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
25 |
14169 | 26 ;; Hacked from tea.el by Olin Shivers (shivers@cs.cmu.edu). 8/88 |
267 | 27 |
46153 | 28 ;; This file defines a lisp-in-a-buffer package (inferior-lisp mode) |
46158
61df14a62e39
Fix spacing (garbled by previous patch).
Juanma Barranquero <lekktu@gmail.com>
parents:
46153
diff
changeset
|
29 ;; built on top of comint mode. This version is more featureful, |
61df14a62e39
Fix spacing (garbled by previous patch).
Juanma Barranquero <lekktu@gmail.com>
parents:
46153
diff
changeset
|
30 ;; robust, and uniform than the Emacs 18 version. The key bindings are |
46153 | 31 ;; also more compatible with the bindings of Hemlock and Zwei (the |
32 ;; Lisp Machine emacs). | |
267 | 33 |
14169 | 34 ;; Since this mode is built on top of the general command-interpreter-in- |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
35 ;; a-buffer mode (comint mode), it shares a common base functionality, |
14169 | 36 ;; and a common set of bindings, with all modes derived from comint mode. |
37 ;; This makes these modes easier to use. | |
267 | 38 |
14169 | 39 ;; For documentation on the functionality provided by comint mode, and |
40 ;; the hooks available for customising it, see the file comint.el. | |
41 ;; For further information on inferior-lisp mode, see the comments below. | |
267 | 42 |
14169 | 43 ;; Needs fixin: |
44 ;; The load-file/compile-file default mechanism could be smarter -- it | |
45 ;; doesn't know about the relationship between filename extensions and | |
46 ;; whether the file is source or executable. If you compile foo.lisp | |
47 ;; with compile-file, then the next load-file should use foo.bin for | |
48 ;; the default, not foo.lisp. This is tricky to do right, particularly | |
49 ;; because the extension for executable files varies so much (.o, .bin, | |
50 ;; .lbin, .mo, .vo, .ao, ...). | |
51 ;; | |
52 ;; It would be nice if inferior-lisp (and inferior scheme, T, ...) modes | |
53 ;; had a verbose minor mode wherein sending or compiling defuns, etc. | |
54 ;; would be reflected in the transcript with suitable comments, e.g. | |
55 ;; ";;; redefining fact". Several ways to do this. Which is right? | |
56 ;; | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
57 ;; When sending text from a source file to a subprocess, the process-mark can |
14169 | 58 ;; move off the window, so you can lose sight of the process interactions. |
59 ;; Maybe I should ensure the process mark is in the window when I send | |
60 ;; text to the process? Switch selectable? | |
267 | 61 |
798
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
62 ;;; Code: |
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
63 |
b7932f859d4e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
727
diff
changeset
|
64 (require 'comint) |
836 | 65 (require 'lisp-mode) |
66 | |
267 | 67 |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
68 (defgroup inferior-lisp nil |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
69 "Run an outside Lisp in an Emacs buffer." |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
70 :group 'lisp |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
71 :version "22.1") |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
72 |
957 | 73 ;;;###autoload |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
74 (defcustom inferior-lisp-filter-regexp |
105939
a0f778f4a995
* term/x-win.el (x-gtk-stock-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
75 (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") |
3663 | 76 "*What not to save on inferior Lisp's input history. |
77 Input matching this regexp is not saved on the input history in Inferior Lisp | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
78 mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
79 \(as in :a, :c, etc.)" |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
80 :type 'regexp |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
81 :group 'inferior-lisp) |
267 | 82 |
110909
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
83 (defvar inferior-lisp-mode-map |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
84 (let ((map (copy-keymap comint-mode-map))) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
85 (set-keymap-parent map lisp-mode-shared-map) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
86 (define-key map "\C-x\C-e" 'lisp-eval-last-sexp) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
87 (define-key map "\C-c\C-l" 'lisp-load-file) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
88 (define-key map "\C-c\C-k" 'lisp-compile-file) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
89 (define-key map "\C-c\C-a" 'lisp-show-arglist) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
90 (define-key map "\C-c\C-d" 'lisp-describe-sym) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
91 (define-key map "\C-c\C-f" 'lisp-show-function-documentation) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
92 (define-key map "\C-c\C-v" 'lisp-show-variable-documentation) |
cc035ccb9275
Declare and define in one step various mode maps.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106815
diff
changeset
|
93 map)) |
267 | 94 |
95 ;;; These commands augment Lisp mode, so you can process Lisp code in | |
96 ;;; the source files. | |
97 (define-key lisp-mode-map "\M-\C-x" 'lisp-eval-defun) ; Gnu convention | |
98 (define-key lisp-mode-map "\C-x\C-e" 'lisp-eval-last-sexp) ; Gnu convention | |
99 (define-key lisp-mode-map "\C-c\C-e" 'lisp-eval-defun) | |
100 (define-key lisp-mode-map "\C-c\C-r" 'lisp-eval-region) | |
101 (define-key lisp-mode-map "\C-c\C-c" 'lisp-compile-defun) | |
102 (define-key lisp-mode-map "\C-c\C-z" 'switch-to-lisp) | |
103 (define-key lisp-mode-map "\C-c\C-l" 'lisp-load-file) | |
104 (define-key lisp-mode-map "\C-c\C-k" 'lisp-compile-file) ; "kompile" file | |
105 (define-key lisp-mode-map "\C-c\C-a" 'lisp-show-arglist) | |
106 (define-key lisp-mode-map "\C-c\C-d" 'lisp-describe-sym) | |
107 (define-key lisp-mode-map "\C-c\C-f" 'lisp-show-function-documentation) | |
108 (define-key lisp-mode-map "\C-c\C-v" 'lisp-show-variable-documentation) | |
109 | |
110 | |
727 | 111 ;;; This function exists for backwards compatibility. |
112 ;;; Previous versions of this package bound commands to C-c <letter> | |
113 ;;; bindings, which is not allowed by the gnumacs standard. | |
114 | |
3663 | 115 ;;; "This function binds many inferior-lisp commands to C-c <letter> bindings, |
116 ;;;where they are more accessible. C-c <letter> bindings are reserved for the | |
117 ;;;user, so these bindings are non-standard. If you want them, you should | |
118 ;;;have this function called by the inferior-lisp-load-hook: | |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
119 ;;; (add-hook 'inferior-lisp-load-hook 'inferior-lisp-install-letter-bindings) |
3663 | 120 ;;;You can modify this function to install just the bindings you want." |
835 | 121 (defun inferior-lisp-install-letter-bindings () |
727 | 122 (define-key lisp-mode-map "\C-ce" 'lisp-eval-defun-and-go) |
123 (define-key lisp-mode-map "\C-cr" 'lisp-eval-region-and-go) | |
124 (define-key lisp-mode-map "\C-cc" 'lisp-compile-defun-and-go) | |
125 (define-key lisp-mode-map "\C-cz" 'switch-to-lisp) | |
126 (define-key lisp-mode-map "\C-cl" 'lisp-load-file) | |
127 (define-key lisp-mode-map "\C-ck" 'lisp-compile-file) | |
128 (define-key lisp-mode-map "\C-ca" 'lisp-show-arglist) | |
129 (define-key lisp-mode-map "\C-cd" 'lisp-describe-sym) | |
130 (define-key lisp-mode-map "\C-cf" 'lisp-show-function-documentation) | |
131 (define-key lisp-mode-map "\C-cv" 'lisp-show-variable-documentation) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
132 |
835 | 133 (define-key inferior-lisp-mode-map "\C-cl" 'lisp-load-file) |
134 (define-key inferior-lisp-mode-map "\C-ck" 'lisp-compile-file) | |
135 (define-key inferior-lisp-mode-map "\C-ca" 'lisp-show-arglist) | |
136 (define-key inferior-lisp-mode-map "\C-cd" 'lisp-describe-sym) | |
137 (define-key inferior-lisp-mode-map "\C-cf" 'lisp-show-function-documentation) | |
138 (define-key inferior-lisp-mode-map "\C-cv" | |
139 'lisp-show-variable-documentation)) | |
727 | 140 |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
141 ;;;###autoload |
105939
a0f778f4a995
* term/x-win.el (x-gtk-stock-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
142 (defcustom inferior-lisp-program (purecopy "lisp") |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
143 "*Program name for invoking an inferior Lisp in Inferior Lisp mode." |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
144 :type 'string |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
145 :group 'inferior-lisp) |
727 | 146 |
957 | 147 ;;;###autoload |
105939
a0f778f4a995
* term/x-win.el (x-gtk-stock-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
148 (defcustom inferior-lisp-load-command (purecopy "(load \"%s\")\n") |
267 | 149 "*Format-string for building a Lisp expression to load a file. |
3663 | 150 This format string should use `%s' to substitute a file name |
267 | 151 and should result in a Lisp expression that will command the inferior Lisp |
152 to load that file. The default works acceptably on most Lisps. | |
13644
e36da6ad58fe
(inferior-lisp-load-command): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12868
diff
changeset
|
153 The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\n\" |
267 | 154 produces cosmetically superior output for this application, |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
155 but it works only in Common Lisp." |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
156 :type 'string |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
157 :group 'inferior-lisp) |
267 | 158 |
957 | 159 ;;;###autoload |
105957
25e1d7e37015
* widget.el (define-widget): Purecopy the docstring.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105939
diff
changeset
|
160 (defcustom inferior-lisp-prompt (purecopy "^[^> \n]*>+:? *") |
63519
e33c4b9caa8a
(inferior-lisp-prompt): Fix spelling in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
62874
diff
changeset
|
161 "Regexp to recognize prompts in the Inferior Lisp mode. |
5303
8e6ba05e1271
(inferior-lisp-prompt): Don't match more than one line.
Richard M. Stallman <rms@gnu.org>
parents:
5104
diff
changeset
|
162 Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
163 and franz. This variable is used to initialize `comint-prompt-regexp' in the |
3663 | 164 Inferior Lisp buffer. |
267 | 165 |
30647
9d266998439c
(inferior-lisp-prompt): Doc change.
Miles Bader <miles@gnu.org>
parents:
28656
diff
changeset
|
166 This variable is only used if the variable |
61877
395f55ef5adc
(inferior-lisp-prompt): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61707
diff
changeset
|
167 `comint-use-prompt-regexp' is non-nil. |
30647
9d266998439c
(inferior-lisp-prompt): Doc change.
Miles Bader <miles@gnu.org>
parents:
28656
diff
changeset
|
168 |
267 | 169 More precise choices: |
13644
e36da6ad58fe
(inferior-lisp-load-command): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12868
diff
changeset
|
170 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\" |
e36da6ad58fe
(inferior-lisp-load-command): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
12868
diff
changeset
|
171 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\" |
267 | 172 kcl: \"^>+ *\" |
173 | |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
174 This is a fine thing to set in your .emacs file or through Custom." |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
175 :type 'regexp |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
176 :group 'inferior-lisp) |
267 | 177 |
3744
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
178 (defvar inferior-lisp-buffer nil "*The current inferior-lisp process buffer. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
179 |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
180 MULTIPLE PROCESS SUPPORT |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
181 =========================================================================== |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
182 To run multiple Lisp processes, you start the first up |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
183 with \\[inferior-lisp]. It will be in a buffer named `*inferior-lisp*'. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
184 Rename this buffer with \\[rename-buffer]. You may now start up a new |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
185 process with another \\[inferior-lisp]. It will be in a new buffer, |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
186 named `*inferior-lisp*'. You can switch between the different process |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
187 buffers with \\[switch-to-buffer]. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
188 |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
189 Commands that send text from source buffers to Lisp processes -- |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
190 like `lisp-eval-defun' or `lisp-show-arglist' -- have to choose a process |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
191 to send to, when you have more than one Lisp process around. This |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
192 is determined by the global variable `inferior-lisp-buffer'. Suppose you |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
193 have three inferior Lisps running: |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
194 Buffer Process |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
195 foo inferior-lisp |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
196 bar inferior-lisp<2> |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
197 *inferior-lisp* inferior-lisp<3> |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
198 If you do a \\[lisp-eval-defun] command on some Lisp source code, |
3744
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
199 what process do you send it to? |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
200 |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
201 - If you're in a process buffer (foo, bar, or *inferior-lisp*), |
3744
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
202 you send it to that process. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
203 - If you're in some other buffer (e.g., a source file), you |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
204 send it to the process attached to buffer `inferior-lisp-buffer'. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
205 This process selection is performed by function `inferior-lisp-proc'. |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
206 |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
207 Whenever \\[inferior-lisp] fires up a new process, it resets |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
208 `inferior-lisp-buffer' to be the new process's buffer. If you only run |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
209 one process, this does the right thing. If you run multiple |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
210 processes, you can change `inferior-lisp-buffer' to another process |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
211 buffer with \\[set-variable].") |
f344542ac7fd
(inferior-lisp-buffer): Move defvar earlier.
Richard M. Stallman <rms@gnu.org>
parents:
3663
diff
changeset
|
212 |
957 | 213 ;;;###autoload |
62270
a5516bad2c77
(inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms
Luc Teirlinck <teirllm@auburn.edu>
parents:
61877
diff
changeset
|
214 (defvar inferior-lisp-mode-hook '() |
105170 | 215 "*Hook for customizing Inferior Lisp mode.") |
267 | 216 |
17654
9005c1013176
(inferior-lisp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
14857
diff
changeset
|
217 (put 'inferior-lisp-mode 'mode-class 'special) |
9005c1013176
(inferior-lisp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
14857
diff
changeset
|
218 |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
219 (defun inferior-lisp-mode () |
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
220 "Major mode for interacting with an inferior Lisp process. |
267 | 221 Runs a Lisp interpreter as a subprocess of Emacs, with Lisp I/O through an |
3663 | 222 Emacs buffer. Variable `inferior-lisp-program' controls which Lisp interpreter |
223 is run. Variables `inferior-lisp-prompt', `inferior-lisp-filter-regexp' and | |
224 `inferior-lisp-load-command' can customize this mode for different Lisp | |
267 | 225 interpreters. |
226 | |
227 For information on running multiple processes in multiple buffers, see | |
3663 | 228 documentation for variable `inferior-lisp-buffer'. |
267 | 229 |
835 | 230 \\{inferior-lisp-mode-map} |
267 | 231 |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
232 Customization: Entry to this mode runs the hooks on `comint-mode-hook' and |
3663 | 233 `inferior-lisp-mode-hook' (in that order). |
267 | 234 |
235 You can send text to the inferior Lisp process from other buffers containing | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
236 Lisp source. |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
237 `switch-to-lisp' switches the current buffer to the Lisp process buffer. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
238 `lisp-eval-defun' sends the current defun to the Lisp process. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
239 `lisp-compile-defun' compiles the current defun. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
240 `lisp-eval-region' sends the current region to the Lisp process. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
241 `lisp-compile-region' compiles the current region. |
267 | 242 |
727 | 243 Prefixing the lisp-eval/compile-defun/region commands with |
244 a \\[universal-argument] causes a switch to the Lisp process buffer after sending | |
245 the text. | |
267 | 246 |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
247 Commands:\\<inferior-lisp-mode-map> |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
248 \\[comint-send-input] after the end of the process' output sends the text from the |
267 | 249 end of process to point. |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
250 \\[comint-send-input] before the end of the process' output copies the sexp ending at point |
267 | 251 to the end of the process' output, and sends it. |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
252 \\[comint-copy-old-input] copies the sexp ending at point to the end of the process' output, |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
253 allowing you to edit it before sending it. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
254 If `comint-use-prompt-regexp' is nil (the default), \\[comint-insert-input] on old input |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
255 copies the entire old input to the end of the process' output, allowing |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
256 you to edit it before sending it. When not used on old input, or if |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
257 `comint-use-prompt-regexp' is non-nil, \\[comint-insert-input] behaves according to |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
258 its global binding. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
259 \\[backward-delete-char-untabify] converts tabs to spaces as it moves back. |
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
260 \\[lisp-indent-line] indents for Lisp; with argument, shifts rest |
267 | 261 of expression rigidly with the current line. |
71143
12144c8b3b94
(inferior-lisp-mode): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
68773
diff
changeset
|
262 \\[indent-sexp] does \\[lisp-indent-line] on each line starting within following expression. |
267 | 263 Paragraphs are separated only by blank lines. Semicolons start comments. |
264 If you accidentally suspend your process, use \\[comint-continue-subjob] | |
265 to continue it." | |
266 (interactive) | |
62874
e179d5e9c0fe
(inferior-lisp-mode): Use delay-mode-hooks.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62772
diff
changeset
|
267 (delay-mode-hooks |
e179d5e9c0fe
(inferior-lisp-mode): Use delay-mode-hooks.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62772
diff
changeset
|
268 (comint-mode)) |
267 | 269 (setq comint-prompt-regexp inferior-lisp-prompt) |
835 | 270 (setq major-mode 'inferior-lisp-mode) |
271 (setq mode-name "Inferior Lisp") | |
7075
7c7b98107b4c
(inferior-lisp-mode): Remove space after `:' in mode-line-process.
Richard M. Stallman <rms@gnu.org>
parents:
6151
diff
changeset
|
272 (setq mode-line-process '(":%s")) |
835 | 273 (lisp-mode-variables t) |
274 (use-local-map inferior-lisp-mode-map) ;c-c c-k for "kompile" file | |
267 | 275 (setq comint-get-old-input (function lisp-get-old-input)) |
276 (setq comint-input-filter (function lisp-input-filter)) | |
62772
f2892faa87d4
* progmodes/ada-mode.el (ada-mode):
Lute Kamstra <lute@gnu.org>
parents:
62270
diff
changeset
|
277 (run-mode-hooks 'inferior-lisp-mode-hook)) |
267 | 278 |
279 (defun lisp-get-old-input () | |
3663 | 280 "Return a string containing the sexp ending at point." |
267 | 281 (save-excursion |
282 (let ((end (point))) | |
283 (backward-sexp) | |
284 (buffer-substring (point) end)))) | |
285 | |
286 (defun lisp-input-filter (str) | |
3663 | 287 "t if STR does not match `inferior-lisp-filter-regexp'." |
835 | 288 (not (string-match inferior-lisp-filter-regexp str))) |
267 | 289 |
957 | 290 ;;;###autoload |
835 | 291 (defun inferior-lisp (cmd) |
3663 | 292 "Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'. |
293 If there is a process already running in `*inferior-lisp*', just switch | |
835 | 294 to that buffer. |
727 | 295 With argument, allows you to edit the command line (default is value |
3663 | 296 of `inferior-lisp-program'). Runs the hooks from |
297 `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run). | |
267 | 298 \(Type \\[describe-mode] in the process buffer for a list of commands.)" |
727 | 299 (interactive (list (if current-prefix-arg |
300 (read-string "Run lisp: " inferior-lisp-program) | |
835 | 301 inferior-lisp-program))) |
302 (if (not (comint-check-proc "*inferior-lisp*")) | |
28656
ebc349d16eb9
(inferior-lisp-mode): Don't set
Gerd Moellmann <gerd@gnu.org>
parents:
23700
diff
changeset
|
303 (let ((cmdlist (split-string cmd))) |
835 | 304 (set-buffer (apply (function make-comint) |
305 "inferior-lisp" (car cmdlist) nil (cdr cmdlist))) | |
306 (inferior-lisp-mode))) | |
307 (setq inferior-lisp-buffer "*inferior-lisp*") | |
12868
8c777db02099
(inferior-lisp): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
308 (pop-to-buffer "*inferior-lisp*")) |
105798
0ad1fc06bfc8
* puresize.h (BASE_PURESIZE): Increase to 1470000.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105170
diff
changeset
|
309 ;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*inferior-lisp*")) |
835 | 310 |
3663 | 311 ;;;###autoload |
312 (defalias 'run-lisp 'inferior-lisp) | |
267 | 313 |
727 | 314 (defun lisp-eval-region (start end &optional and-go) |
315 "Send the current region to the inferior Lisp process. | |
3663 | 316 Prefix argument means switch to the Lisp buffer afterwards." |
727 | 317 (interactive "r\nP") |
835 | 318 (comint-send-region (inferior-lisp-proc) start end) |
319 (comint-send-string (inferior-lisp-proc) "\n") | |
727 | 320 (if and-go (switch-to-lisp t))) |
267 | 321 |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
322 (defun lisp-compile-string (string) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
323 "Send the string to the inferior Lisp process to be compiled and executed." |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
324 (comint-send-string |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
325 (inferior-lisp-proc) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
326 (format "(funcall (compile nil (lambda () %s)))\n" string))) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
327 |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
328 (defun lisp-eval-string (string) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
329 "Send the string to the inferior Lisp process to be executed." |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
330 (comint-send-string (inferior-lisp-proc) (concat string "\n"))) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
331 |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
332 (defun lisp-do-defun (do-string do-region) |
727 | 333 "Send the current defun to the inferior Lisp process. |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
334 The actually processing is done by `do-string' and `do-region' |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
335 which determine whether the code is compiled before evaluation. |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
336 DEFVAR forms reset the variables to the init values." |
267 | 337 (save-excursion |
727 | 338 (end-of-defun) |
339 (skip-chars-backward " \t\n\r\f") ; Makes allegro happy | |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
340 (let ((end (point)) (case-fold-search t)) |
727 | 341 (beginning-of-defun) |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
342 (if (looking-at "(defvar") |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
343 (funcall do-string |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
344 ;; replace `defvar' with `defparameter' |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
345 (concat "(defparameter " |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
346 (buffer-substring-no-properties (+ (point) 7) end) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
347 "\n")) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
348 (funcall do-region (point) end))))) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
349 |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
350 (defun lisp-eval-defun (&optional and-go) |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
351 "Send the current defun to the inferior Lisp process. |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
352 DEFVAR forms reset the variables to the init values. |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
353 Prefix argument means switch to the Lisp buffer afterwards." |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
354 (interactive "P") |
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
355 (lisp-do-defun 'lisp-eval-string 'lisp-eval-region) |
727 | 356 (if and-go (switch-to-lisp t))) |
267 | 357 |
727 | 358 (defun lisp-eval-last-sexp (&optional and-go) |
359 "Send the previous sexp to the inferior Lisp process. | |
3663 | 360 Prefix argument means switch to the Lisp buffer afterwards." |
727 | 361 (interactive "P") |
362 (lisp-eval-region (save-excursion (backward-sexp) (point)) (point) and-go)) | |
267 | 363 |
727 | 364 (defun lisp-compile-region (start end &optional and-go) |
365 "Compile the current region in the inferior Lisp process. | |
3663 | 366 Prefix argument means switch to the Lisp buffer afterwards." |
727 | 367 (interactive "r\nP") |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
368 (lisp-compile-string (buffer-substring-no-properties start end)) |
727 | 369 (if and-go (switch-to-lisp t))) |
835 | 370 |
727 | 371 (defun lisp-compile-defun (&optional and-go) |
372 "Compile the current defun in the inferior Lisp process. | |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
373 DEFVAR forms reset the variables to the init values. |
3663 | 374 Prefix argument means switch to the Lisp buffer afterwards." |
727 | 375 (interactive "P") |
93823
11a95e2059c8
lisp-eval-defun & lisp-compile-defun: DEFVAR forms reset the variables
Sam Steingold <sds@gnu.org>
parents:
79717
diff
changeset
|
376 (lisp-do-defun 'lisp-compile-string 'lisp-compile-region) |
727 | 377 (if and-go (switch-to-lisp t))) |
267 | 378 |
379 (defun switch-to-lisp (eob-p) | |
380 "Switch to the inferior Lisp process buffer. | |
381 With argument, positions cursor at end of buffer." | |
382 (interactive "P") | |
23700
3be52677d330
(switch-to-lisp): if no inferior lisp present, call
Karl Heuer <kwzh@gnu.org>
parents:
17654
diff
changeset
|
383 (if (get-buffer-process inferior-lisp-buffer) |
14857
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
384 (let ((pop-up-frames |
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
385 ;; Be willing to use another frame |
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
386 ;; that already has the window in it. |
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
387 (or pop-up-frames |
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
388 (get-buffer-window inferior-lisp-buffer t)))) |
eb23eca2abf9
(switch-to-lisp): Sometimes turn on pop-up-frames.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
389 (pop-to-buffer inferior-lisp-buffer)) |
23700
3be52677d330
(switch-to-lisp): if no inferior lisp present, call
Karl Heuer <kwzh@gnu.org>
parents:
17654
diff
changeset
|
390 (run-lisp inferior-lisp-program)) |
3be52677d330
(switch-to-lisp): if no inferior lisp present, call
Karl Heuer <kwzh@gnu.org>
parents:
17654
diff
changeset
|
391 (when eob-p |
267 | 392 (push-mark) |
23700
3be52677d330
(switch-to-lisp): if no inferior lisp present, call
Karl Heuer <kwzh@gnu.org>
parents:
17654
diff
changeset
|
393 (goto-char (point-max)))) |
267 | 394 |
727 | 395 |
396 ;;; Now that lisp-compile/eval-defun/region takes an optional prefix arg, | |
397 ;;; these commands are redundant. But they are kept around for the user | |
398 ;;; to bind if he wishes, for backwards functionality, and because it's | |
399 ;;; easier to type C-c e than C-u C-c C-e. | |
400 | |
267 | 401 (defun lisp-eval-region-and-go (start end) |
3663 | 402 "Send the current region to the inferior Lisp, and switch to its buffer." |
267 | 403 (interactive "r") |
727 | 404 (lisp-eval-region start end t)) |
267 | 405 |
406 (defun lisp-eval-defun-and-go () | |
3663 | 407 "Send the current defun to the inferior Lisp, and switch to its buffer." |
267 | 408 (interactive) |
727 | 409 (lisp-eval-defun t)) |
267 | 410 |
411 (defun lisp-compile-region-and-go (start end) | |
3663 | 412 "Compile the current region in the inferior Lisp, and switch to its buffer." |
267 | 413 (interactive "r") |
727 | 414 (lisp-compile-region start end t)) |
267 | 415 |
416 (defun lisp-compile-defun-and-go () | |
3663 | 417 "Compile the current defun in the inferior Lisp, and switch to its buffer." |
267 | 418 (interactive) |
727 | 419 (lisp-compile-defun t)) |
267 | 420 |
421 ;;; A version of the form in H. Shevis' soar-mode.el package. Less robust. | |
835 | 422 ;;; (defun lisp-compile-sexp (start end) |
423 ;;; "Compile the s-expression bounded by START and END in the inferior lisp. | |
424 ;;; If the sexp isn't a DEFUN form, it is evaluated instead." | |
425 ;;; (cond ((looking-at "(defun\\s +") | |
426 ;;; (goto-char (match-end 0)) | |
427 ;;; (let ((name-start (point))) | |
428 ;;; (forward-sexp 1) | |
429 ;;; (process-send-string "inferior-lisp" | |
430 ;;; (format "(compile '%s #'(lambda " | |
431 ;;; (buffer-substring name-start | |
432 ;;; (point))))) | |
433 ;;; (let ((body-start (point))) | |
434 ;;; (goto-char start) (forward-sexp 1) ; Can't use end-of-defun. | |
435 ;;; (process-send-region "inferior-lisp" | |
436 ;;; (buffer-substring body-start (point)))) | |
437 ;;; (process-send-string "inferior-lisp" ")\n")) | |
438 ;;; (t (lisp-eval-region start end))))) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
439 ;;; |
835 | 440 ;;; (defun lisp-compile-region (start end) |
441 ;;; "Each s-expression in the current region is compiled (if a DEFUN) | |
442 ;;; or evaluated (if not) in the inferior lisp." | |
443 ;;; (interactive "r") | |
444 ;;; (save-excursion | |
445 ;;; (goto-char start) (end-of-defun) (beginning-of-defun) ; error check | |
446 ;;; (if (< (point) start) (error "region begins in middle of defun")) | |
447 ;;; (goto-char start) | |
448 ;;; (let ((s start)) | |
449 ;;; (end-of-defun) | |
450 ;;; (while (<= (point) end) ; Zip through | |
451 ;;; (lisp-compile-sexp s (point)) ; compiling up defun-sized chunks. | |
452 ;;; (setq s (point)) | |
453 ;;; (end-of-defun)) | |
454 ;;; (if (< s end) (lisp-compile-sexp s end))))) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
455 ;;; |
267 | 456 ;;; End of HS-style code |
457 | |
458 | |
459 (defvar lisp-prev-l/c-dir/file nil | |
3663 | 460 "Record last directory and file used in loading or compiling. |
461 This holds a cons cell of the form `(DIRECTORY . FILE)' | |
462 describing the last `lisp-load-file' or `lisp-compile-file' command.") | |
267 | 463 |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
464 (defcustom lisp-source-modes '(lisp-mode) |
267 | 465 "*Used to determine if a buffer contains Lisp source code. |
466 If it's loaded into a buffer that is in one of these major modes, it's | |
3663 | 467 considered a Lisp source file by `lisp-load-file' and `lisp-compile-file'. |
61707
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
468 Used by these commands to determine defaults." |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
469 :type '(repeat symbol) |
5a21477f3dd8
(inferior-lisp): New defgroup.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
470 :group 'inferior-lisp) |
267 | 471 |
472 (defun lisp-load-file (file-name) | |
473 "Load a Lisp file into the inferior Lisp process." | |
474 (interactive (comint-get-source "Load Lisp file: " lisp-prev-l/c-dir/file | |
42205 | 475 lisp-source-modes nil)) ; nil because LOAD |
835 | 476 ; doesn't need an exact name |
267 | 477 (comint-check-source file-name) ; Check to see if buffer needs saved. |
478 (setq lisp-prev-l/c-dir/file (cons (file-name-directory file-name) | |
479 (file-name-nondirectory file-name))) | |
835 | 480 (comint-send-string (inferior-lisp-proc) |
727 | 481 (format inferior-lisp-load-command file-name)) |
482 (switch-to-lisp t)) | |
267 | 483 |
484 | |
485 (defun lisp-compile-file (file-name) | |
486 "Compile a Lisp file in the inferior Lisp process." | |
487 (interactive (comint-get-source "Compile Lisp file: " lisp-prev-l/c-dir/file | |
42205 | 488 lisp-source-modes nil)) ; nil = don't need |
835 | 489 ; suffix .lisp |
267 | 490 (comint-check-source file-name) ; Check to see if buffer needs saved. |
491 (setq lisp-prev-l/c-dir/file (cons (file-name-directory file-name) | |
492 (file-name-nondirectory file-name))) | |
835 | 493 (comint-send-string (inferior-lisp-proc) (concat "(compile-file \"" |
494 file-name | |
495 "\"\)\n")) | |
727 | 496 (switch-to-lisp t)) |
267 | 497 |
498 | |
499 | |
500 ;;; Documentation functions: function doc, var doc, arglist, and | |
501 ;;; describe symbol. | |
502 ;;; =========================================================================== | |
503 | |
504 ;;; Command strings | |
505 ;;; =============== | |
506 | |
507 (defvar lisp-function-doc-command | |
508 "(let ((fn '%s)) | |
509 (format t \"Documentation for ~a:~&~a\" | |
510 fn (documentation fn 'function)) | |
511 (values))\n" | |
512 "Command to query inferior Lisp for a function's documentation.") | |
513 | |
514 (defvar lisp-var-doc-command | |
515 "(let ((v '%s)) | |
516 (format t \"Documentation for ~a:~&~a\" | |
517 v (documentation v 'variable)) | |
518 (values))\n" | |
519 "Command to query inferior Lisp for a variable's documentation.") | |
520 | |
521 (defvar lisp-arglist-command | |
522 "(let ((fn '%s)) | |
523 (format t \"Arglist for ~a: ~a\" fn (arglist fn)) | |
524 (values))\n" | |
525 "Command to query inferior Lisp for a function's arglist.") | |
526 | |
527 (defvar lisp-describe-sym-command | |
528 "(describe '%s)\n" | |
529 "Command to query inferior Lisp for a variable's documentation.") | |
530 | |
531 | |
532 ;;; Ancillary functions | |
533 ;;; =================== | |
534 | |
535 ;;; Reads a string from the user. | |
536 (defun lisp-symprompt (prompt default) | |
537 (list (let* ((prompt (if default | |
538 (format "%s (default %s): " prompt default) | |
835 | 539 (concat prompt ": "))) |
267 | 540 (ans (read-string prompt))) |
541 (if (zerop (length ans)) default ans)))) | |
542 | |
543 | |
544 ;;; Adapted from function-called-at-point in help.el. | |
545 (defun lisp-fn-called-at-pt () | |
546 "Returns the name of the function called in the current call. | |
3663 | 547 The value is nil if it can't find one." |
267 | 548 (condition-case nil |
549 (save-excursion | |
550 (save-restriction | |
551 (narrow-to-region (max (point-min) (- (point) 1000)) (point-max)) | |
552 (backward-up-list 1) | |
553 (forward-char 1) | |
554 (let ((obj (read (current-buffer)))) | |
555 (and (symbolp obj) obj)))) | |
556 (error nil))) | |
557 | |
558 | |
559 ;;; Adapted from variable-at-point in help.el. | |
560 (defun lisp-var-at-pt () | |
561 (condition-case () | |
562 (save-excursion | |
563 (forward-sexp -1) | |
564 (skip-chars-forward "'") | |
565 (let ((obj (read (current-buffer)))) | |
566 (and (symbolp obj) obj))) | |
567 (error nil))) | |
568 | |
569 | |
570 ;;; Documentation functions: fn and var doc, arglist, and symbol describe. | |
571 ;;; ====================================================================== | |
572 | |
573 (defun lisp-show-function-documentation (fn) | |
574 "Send a command to the inferior Lisp to give documentation for function FN. | |
3663 | 575 See variable `lisp-function-doc-command'." |
267 | 576 (interactive (lisp-symprompt "Function doc" (lisp-fn-called-at-pt))) |
835 | 577 (comint-proc-query (inferior-lisp-proc) |
578 (format lisp-function-doc-command fn))) | |
267 | 579 |
580 (defun lisp-show-variable-documentation (var) | |
581 "Send a command to the inferior Lisp to give documentation for function FN. | |
3663 | 582 See variable `lisp-var-doc-command'." |
267 | 583 (interactive (lisp-symprompt "Variable doc" (lisp-var-at-pt))) |
835 | 584 (comint-proc-query (inferior-lisp-proc) (format lisp-var-doc-command var))) |
267 | 585 |
586 (defun lisp-show-arglist (fn) | |
3663 | 587 "Send a query to the inferior Lisp for the arglist for function FN. |
588 See variable `lisp-arglist-command'." | |
267 | 589 (interactive (lisp-symprompt "Arglist" (lisp-fn-called-at-pt))) |
835 | 590 (comint-proc-query (inferior-lisp-proc) (format lisp-arglist-command fn))) |
267 | 591 |
592 (defun lisp-describe-sym (sym) | |
593 "Send a command to the inferior Lisp to describe symbol SYM. | |
3663 | 594 See variable `lisp-describe-sym-command'." |
267 | 595 (interactive (lisp-symprompt "Describe" (lisp-var-at-pt))) |
835 | 596 (comint-proc-query (inferior-lisp-proc) |
597 (format lisp-describe-sym-command sym))) | |
267 | 598 |
599 | |
3663 | 600 ;; "Returns the current inferior Lisp process. |
601 ;; See variable `inferior-lisp-buffer'." | |
835 | 602 (defun inferior-lisp-proc () |
267 | 603 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-lisp-mode) |
604 (current-buffer) | |
835 | 605 inferior-lisp-buffer)))) |
267 | 606 (or proc |
5104
bcf4b8ed1c60
(inferior-lisp-proc): Clean up error message.
Richard M. Stallman <rms@gnu.org>
parents:
3744
diff
changeset
|
607 (error "No Lisp subprocess; see variable `inferior-lisp-buffer'")))) |
267 | 608 |
609 | |
610 ;;; Do the user's customisation... | |
611 ;;;=============================== | |
62270
a5516bad2c77
(inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms
Luc Teirlinck <teirllm@auburn.edu>
parents:
61877
diff
changeset
|
612 (defvar inferior-lisp-load-hook nil |
a5516bad2c77
(inferior-lisp-mode-hook, inferior-lisp-load-hook): Convert defcustoms
Luc Teirlinck <teirllm@auburn.edu>
parents:
61877
diff
changeset
|
613 "This hook is run when the library `inf-lisp' is loaded.") |
835 | 614 |
615 (run-hooks 'inferior-lisp-load-hook) | |
267 | 616 |
617 ;;; CHANGE LOG | |
618 ;;; =========================================================================== | |
835 | 619 ;;; 7/21/92 Jim Blandy |
620 ;;; - Changed all uses of the cmulisp name or prefix to inferior-lisp; | |
621 ;;; this is now the official inferior lisp package. Use the global | |
622 ;;; ChangeLog from now on. | |
267 | 623 ;;; 5/24/90 Olin |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
624 ;;; - Split cmulisp and cmushell modes into separate files. |
267 | 625 ;;; Not only is this a good idea, it's apparently the way it'll be rel 19. |
626 ;;; - Upgraded process sends to use comint-send-string instead of | |
627 ;;; process-send-string. | |
628 ;;; - Explicit references to process "cmulisp" have been replaced with | |
629 ;;; (cmulisp-proc). This allows better handling of multiple process bufs. | |
630 ;;; - Added process query and var/function/symbol documentation | |
631 ;;; commands. Based on code written by Douglas Roberts. | |
632 ;;; - Added lisp-eval-last-sexp, bound to C-x C-e. | |
633 ;;; | |
634 ;;; 9/20/90 Olin | |
635 ;;; Added a save-restriction to lisp-fn-called-at-pt. This bug and fix | |
636 ;;; reported by Lennart Staflin. | |
637 ;;; | |
638 ;;; 3/12/90 Olin | |
639 ;;; - lisp-load-file and lisp-compile-file no longer switch-to-lisp. | |
640 ;;; Tale suggested this. | |
727 | 641 ;;; - Reversed this decision 7/15/91. You need the visual feedback. |
642 ;;; | |
643 ;;; 7/25/91 Olin | |
644 ;;; Changed all keybindings of the form C-c <letter>. These are | |
645 ;;; supposed to be reserved for the user to bind. This affected | |
646 ;;; mainly the compile/eval-defun/region[-and-go] commands. | |
647 ;;; This was painful, but necessary to adhere to the gnumacs standard. | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30647
diff
changeset
|
648 ;;; For some backwards compatibility, see the |
727 | 649 ;;; cmulisp-install-letter-bindings |
650 ;;; function. | |
651 ;;; | |
652 ;;; 8/2/91 Olin | |
653 ;;; - The lisp-compile/eval-defun/region commands now take a prefix arg, | |
654 ;;; which means switch-to-lisp after sending the text to the Lisp process. | |
655 ;;; This obsoletes all the -and-go commands. The -and-go commands are | |
656 ;;; kept around for historical reasons, and because the user can bind | |
657 ;;; them to key sequences shorter than C-u C-c C-<letter>. | |
658 ;;; - If M-x cmulisp is invoked with a prefix arg, it allows you to | |
659 ;;; edit the command line. | |
584 | 660 |
835 | 661 (provide 'inf-lisp) |
584 | 662 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93823
diff
changeset
|
663 ;; arch-tag: 5b74abc3-a085-4b91-8ab8-8da6899d3b92 |
835 | 664 ;;; inf-lisp.el ends here |