Mercurial > emacs
annotate lisp/ielm.el @ 43782:6878894428ba
Fix last change.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 08 Mar 2002 10:56:48 +0000 |
parents | ca53e91e0186 |
children | e7a3c79415d6 |
rev | line source |
---|---|
7267 | 1 ;;; ielm.el --- interaction mode for Emacs Lisp |
14169 | 2 |
7267 | 3 ;; Copyright (C) 1994 Free Software Foundation, Inc. |
4 | |
5 ;; Author: David Smith <maa036@lancaster.ac.uk> | |
17976 | 6 ;; Maintainer: FSF |
7267 | 7 ;; Created: 25 Feb 1994 |
8 ;; Keywords: lisp | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
7267 | 26 |
27 ;;; Commentary: | |
28 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
29 ;; Provides a nice interface to evaluating Emacs Lisp expressions. |
7267 | 30 ;; Input is handled by the comint package, and output is passed |
31 ;; through the pretty-printer. | |
32 | |
33 ;; To install: copy this file to a directory in your load-path, and | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
34 ;; add the following line to your .emacs file: |
7267 | 35 ;; |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
36 ;; (autoload 'ielm "ielm" "Start an inferior Emacs Lisp session" t) |
7267 | 37 ;; |
18387 | 38 ;; For completion to work, the comint.el from Emacs 19.23 is |
7267 | 39 ;; required. If you do not have it, or if you are running Lemacs, |
40 ;; also add the following code to your .emacs: | |
41 ;; | |
42 ;; (setq ielm-mode-hook | |
43 ;; '(lambda nil | |
44 ;; (define-key ielm-map "\t" | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
45 ;; '(lambda nil (interactive) (or (ielm-tab) |
7267 | 46 ;; (lisp-complete-symbol)))))) |
47 | |
48 ;; To start: M-x ielm. Type C-h m in the *ielm* buffer for more info. | |
49 | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
50 ;; The latest version is available by WWW from |
7267 | 51 ;; http://mathssun5.lancs.ac.uk:2080/~maa036/elisp/dir.html |
52 ;; or by anonymous FTP from | |
53 ;; /anonymous@wingra.stat.wisc.edu:pub/src/emacs-lisp/ielm.el.gz | |
54 ;; or from the author: David M. Smith <maa036@lancaster.ac.uk> | |
55 | |
56 ;;; Code: | |
57 | |
58 (require 'comint) | |
59 (require 'pp) | |
60 | |
61 ;;; User variables | |
62 | |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
63 (defgroup ielm nil |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
64 "Interaction mode for Emacs Lisp." |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
65 :group 'lisp) |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
66 |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
67 |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
68 (defcustom ielm-noisy t |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
69 "*If non-nil, IELM will beep on error." |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
70 :type 'boolean |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
71 :group 'ielm) |
7267 | 72 |
43524
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
73 (defcustom ielm-prompt "ELISP> " |
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
74 "Prompt used in IELM." |
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
75 :type 'string |
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
76 :group 'ielm |
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
77 :get #'(lambda (symbol) (substring-no-properties (symbol-value symbol))) |
ca53e91e0186
(ielm-prompt): Allow customization; make it read-only.
Juanma Barranquero <lekktu@gmail.com>
parents:
43519
diff
changeset
|
78 :set #'(lambda (symbol value) (set symbol (propertize value 'read-only t 'rear-nonsticky t)))) |
7267 | 79 |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
80 (defcustom ielm-dynamic-return t |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
81 "*Controls whether \\<ielm-map>\\[ielm-return] has intelligent behaviour in IELM. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
82 If non-nil, \\[ielm-return] evaluates input for complete sexps, or inserts a newline |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
83 and indents for incomplete sexps. If nil, always inserts newlines." |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
84 :type 'boolean |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
85 :group 'ielm) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
86 |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
87 (defcustom ielm-dynamic-multiline-inputs t |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
88 "*Force multiline inputs to start from column zero? |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
89 If non-nil, after entering the first line of an incomplete sexp, a newline |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
90 will be inserted after the prompt, moving the input to the next line. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
91 This gives more frame width for large indented sexps, and allows functions |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
92 such as `edebug-defun' to work with such inputs." |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
93 :type 'boolean |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
94 :group 'ielm) |
7267 | 95 |
17634
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
96 (defcustom ielm-mode-hook nil |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
97 "*Hooks to be run when IELM (`inferior-emacs-lisp-mode') is started." |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
98 :type 'hook |
247c2a11843d
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17148
diff
changeset
|
99 :group 'ielm) |
7267 | 100 |
21834
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
101 (defvar * nil |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
102 "Most recent value evaluated in IELM.") |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
103 |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
104 (defvar ** nil |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
105 "Second-most-recent value evaluated in IELM.") |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
106 |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
107 (defvar *** nil |
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
108 "Third-most-recent value evaluated in IELM.") |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
109 |
43519
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
110 (defvar ielm-match-data nil |
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
111 "Match data saved at the end of last command.") |
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
112 |
7267 | 113 ;;; System variables |
114 | |
115 (defvar ielm-working-buffer nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
116 "Buffer in which IELM sexps will be evaluated. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
117 This variable is buffer-local.") |
7267 | 118 |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
119 (defvar ielm-header |
18400
16de434b8026
(ielm-header): Delete version and RCS header.
Richard M. Stallman <rms@gnu.org>
parents:
18387
diff
changeset
|
120 "*** Welcome to IELM *** Type (describe-mode) for help.\n" |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
121 "Message to display when IELM is started.") |
7267 | 122 |
123 (defvar ielm-map nil) | |
124 (if ielm-map nil | |
125 (if (string-match "Lucid" emacs-version) | |
126 ;; Lemacs | |
127 (progn | |
128 (setq ielm-map (make-sparse-keymap)) | |
129 (set-keymap-parent ielm-map comint-mode-map)) | |
130 ;; FSF | |
131 (setq ielm-map (cons 'keymap comint-mode-map))) | |
132 (define-key ielm-map "\t" 'comint-dynamic-complete) | |
133 (define-key ielm-map "\C-m" 'ielm-return) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
134 (define-key ielm-map "\C-j" 'ielm-send-input) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
135 (define-key ielm-map "\e\C-x" 'eval-defun) ; for consistency with |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
136 (define-key ielm-map "\e\t" 'lisp-complete-symbol) ; lisp-interaction-mode |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
137 ;; These bindings are from `lisp-mode-shared-map' -- can you inherit |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
138 ;; from more than one keymap?? |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
139 (define-key ielm-map "\e\C-q" 'indent-sexp) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
140 (define-key ielm-map "\177" 'backward-delete-char-untabify) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
141 ;; Some convenience bindings for setting the working buffer |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
142 (define-key ielm-map "\C-c\C-b" 'ielm-change-working-buffer) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
143 (define-key ielm-map "\C-c\C-f" 'ielm-display-working-buffer) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
144 (define-key ielm-map "\C-c\C-v" 'ielm-print-working-buffer)) |
7267 | 145 |
12439
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
146 (defvar ielm-font-lock-keywords |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
147 (list |
12439
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
148 (cons (concat "^" (regexp-quote ielm-prompt)) 'font-lock-keyword-face) |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
18400
diff
changeset
|
149 '("\\(^\\*\\*\\*[^*]+\\*\\*\\*\\)\\(.*$\\)" |
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
18400
diff
changeset
|
150 (1 font-lock-comment-face) |
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
18400
diff
changeset
|
151 (2 font-lock-constant-face))) |
12439
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
152 "Additional expressions to highlight in ielm buffers.") |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
153 |
7267 | 154 ;;; Completion stuff |
155 | |
156 (defun ielm-tab nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
157 "Possibly indent the current line as lisp code." |
7267 | 158 (interactive) |
159 (if (or (eq (preceding-char) ?\n) | |
160 (eq (char-syntax (preceding-char)) ? )) | |
161 (progn | |
162 (ielm-indent-line) | |
163 t))) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
164 |
7267 | 165 (defun ielm-complete-symbol nil |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
166 "Complete the lisp symbol before point." |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
167 ;; A wrapper for lisp-complete symbol that returns non-nil if |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
168 ;; completion has occurred |
7267 | 169 (let* ((btick (buffer-modified-tick)) |
7842
50676390b162
(ielm-complete-symbol): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7275
diff
changeset
|
170 (cbuffer (get-buffer "*Completions*")) |
7267 | 171 (ctick (and cbuffer (buffer-modified-tick cbuffer)))) |
172 (lisp-complete-symbol) | |
173 ;; completion has occurred if: | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
174 (or |
7267 | 175 ;; the buffer has been modified |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
176 (not (= btick (buffer-modified-tick))) |
14040 | 177 ;; a completions buffer has been modified or created |
7267 | 178 (if cbuffer |
179 (not (= ctick (buffer-modified-tick cbuffer))) | |
7842
50676390b162
(ielm-complete-symbol): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7275
diff
changeset
|
180 (get-buffer "*Completions*"))))) |
7267 | 181 |
182 (defun ielm-complete-filename nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
183 "Dynamically complete filename before point, if in a string." |
7267 | 184 (if (nth 3 (parse-partial-sexp comint-last-input-start (point))) |
185 (comint-dynamic-complete-filename))) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
186 |
7267 | 187 (defun ielm-indent-line nil |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
188 "Indent the current line as Lisp code if it is not a prompt line." |
30644
ce7385745191
(ielm-indent-line): Detect a "prompt" line by seeing if comint-bol
Miles Bader <miles@gnu.org>
parents:
21834
diff
changeset
|
189 (when (save-excursion (comint-bol) (bolp)) |
7267 | 190 (lisp-indent-line))) |
191 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
192 ;;; Working buffer manipulation |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
193 |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
194 (defun ielm-print-working-buffer nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
195 "Print the current IELM working buffer's name in the echo area." |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
196 (interactive) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
197 (message "The current working buffer is: %s" (buffer-name ielm-working-buffer))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
198 |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
199 (defun ielm-display-working-buffer nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
200 "Display the current IELM working buffer. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
201 Don't forget that selecting that buffer will change its value of `point' |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
202 to its value of `window-point'!" |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
203 (interactive) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
204 (display-buffer ielm-working-buffer) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
205 (ielm-print-working-buffer)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
206 |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
207 (defun ielm-change-working-buffer (buf) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
208 "Change the current IELM working buffer to BUF. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
209 This is the buffer in which all sexps entered at the IELM prompt are |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
210 evaluated. You can achieve the same effect with a call to |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
211 `set-buffer' at the IELM prompt." |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
212 (interactive "bSet working buffer to: ") |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
213 (setq ielm-working-buffer (or (get-buffer buf) (error "No such buffer"))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
214 (ielm-print-working-buffer)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
215 |
7267 | 216 ;;; Other bindings |
217 | |
218 (defun ielm-return nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
219 "Newline and indent, or evaluate the sexp before the prompt. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
220 Complete sexps are evaluated; for incomplete sexps inserts a newline |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
221 and indents. If however `ielm-dynamic-return' is nil, this always |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
222 simply inserts a newline." |
7267 | 223 (interactive) |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
224 (if ielm-dynamic-return |
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
225 (let ((state |
7267 | 226 (save-excursion |
227 (end-of-line) | |
228 (parse-partial-sexp (ielm-pm) | |
229 (point))))) | |
230 (if (and (< (car state) 1) (not (nth 3 state))) | |
231 (ielm-send-input) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
232 (if (and ielm-dynamic-multiline-inputs |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
233 (save-excursion |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
234 (beginning-of-line) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
235 (looking-at comint-prompt-regexp))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
236 (save-excursion |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
237 (goto-char (ielm-pm)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
238 (newline 1))) |
7267 | 239 (newline-and-indent))) |
240 (newline))) | |
241 | |
17978
1471676365ac
(ielm-input): New defvar.
Richard M. Stallman <rms@gnu.org>
parents:
17976
diff
changeset
|
242 (defvar ielm-input) |
1471676365ac
(ielm-input): New defvar.
Richard M. Stallman <rms@gnu.org>
parents:
17976
diff
changeset
|
243 |
7267 | 244 (defun ielm-input-sender (proc input) |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
245 ;; Just sets the variable ielm-input, which is in the scope of |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
246 ;; `ielm-send-input's call. |
7267 | 247 (setq ielm-input input)) |
248 | |
249 (defun ielm-send-input nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
250 "Evaluate the Emacs Lisp expression after the prompt." |
7267 | 251 (interactive) |
252 (let ((buf (current-buffer)) | |
253 ielm-input) ; set by ielm-input-sender | |
254 (comint-send-input) ; update history, markers etc. | |
255 (ielm-eval-input ielm-input))) | |
256 | |
257 ;;; Utility functions | |
258 | |
259 (defun ielm-is-whitespace (string) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
260 "Return non-nil if STRING is all whitespace." |
7267 | 261 (or (string= string "") (string-match "\\`[ \t\n]+\\'" string))) |
262 | |
263 (defun ielm-format-errors (errlist) | |
264 (let ((result "")) | |
265 (while errlist | |
266 (setq result (concat result (prin1-to-string (car errlist)) ", ")) | |
267 (setq errlist (cdr errlist))) | |
268 (substring result 0 -2))) | |
269 | |
270 | |
271 (defun ielm-format-error (err) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
272 ;; Return a string form of the error ERR. |
7267 | 273 (format "%s%s" |
274 (or (get (car err) 'error-message) "Peculiar error") | |
275 (if (cdr err) | |
276 (format ": %s" (ielm-format-errors (cdr err))) | |
277 ""))) | |
278 | |
279 ;;; Evaluation | |
280 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
281 (defun ielm-eval-input (ielm-string) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
282 "Evaluate the Lisp expression IELM-STRING, and pretty-print the result." |
7267 | 283 ;; This is the function that actually `sends' the input to the |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
284 ;; `inferior Lisp process'. All comint-send-input does is works out |
7267 | 285 ;; what that input is. What this function does is evaluates that |
286 ;; input and produces `output' which gets inserted into the buffer, | |
287 ;; along with a new prompt. A better way of doing this might have | |
288 ;; been to actually send the output to the `cat' process, and write | |
289 ;; this as in output filter that converted sexps in the output | |
290 ;; stream to their evaluated value. But that would have involved | |
291 ;; more process coordination than I was happy to deal with. | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
292 ;; |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
293 ;; NOTE: all temporary variables in this function will be in scope |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
294 ;; during the eval, and so need to have non-clashing names. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
295 (let (ielm-form ; form to evaluate |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
296 ielm-pos ; End posn of parse in string |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
297 ielm-result ; Result, or error message |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
298 ielm-error-type ; string, nil if no error |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
299 (ielm-output "") ; result to display |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
300 (ielm-wbuf ielm-working-buffer) ; current buffer after evaluation |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
301 (ielm-pmark (ielm-pm))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
302 (if (not (ielm-is-whitespace ielm-string)) |
7267 | 303 (progn |
304 (condition-case err | |
305 (let (rout) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
306 (setq rout (read-from-string ielm-string)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
307 (setq ielm-form (car rout)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
308 (setq ielm-pos (cdr rout))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
309 (error (setq ielm-result (ielm-format-error err)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
310 (setq ielm-error-type "Read error"))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
311 (if ielm-error-type nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
312 ;; Make sure working buffer has not been killed |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
313 (if (not (buffer-name ielm-working-buffer)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
314 (setq ielm-result "Working buffer has been killed" |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
315 ielm-error-type "IELM Error" |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
316 ielm-wbuf (current-buffer)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
317 (if (ielm-is-whitespace (substring ielm-string ielm-pos)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
318 ;; need this awful let convolution to work around |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
319 ;; an Emacs bug involving local vbls and let binding |
21781
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
320 (let ((*save *) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
321 (**save **) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
322 (***save ***)) |
43519
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
323 (set-match-data ielm-match-data) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
324 (save-excursion |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
325 (set-buffer ielm-working-buffer) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
326 (condition-case err |
21781
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
327 (let ((* *save) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
328 (** **save) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
329 (*** ***save) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
330 (ielm-obuf (current-buffer))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
331 (setq ielm-result (eval ielm-form)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
332 (setq ielm-wbuf (current-buffer)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
333 ;; The eval may have changed current-buffer; |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
334 ;; need to set it back here to avoid a bug |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
335 ;; in let. Don't want to use save-excursion |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
336 ;; because we want to allow changes in point. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
337 (set-buffer ielm-obuf)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
338 (error (setq ielm-result (ielm-format-error err)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
339 (setq ielm-error-type "Eval error")) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
340 (quit (setq ielm-result "Quit during evaluation") |
43519
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
341 (setq ielm-error-type "Eval error")))) |
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
342 (setq ielm-match-data (match-data))) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
343 (setq ielm-error-type "IELM error") |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
344 (setq ielm-result "More than one sexp in input")))) |
7267 | 345 |
346 ;; If the eval changed the current buffer, mention it here | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
347 (if (eq ielm-wbuf ielm-working-buffer) nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
348 (message "current buffer is now: %s" ielm-wbuf) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
349 (setq ielm-working-buffer ielm-wbuf)) |
7267 | 350 |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
351 (goto-char ielm-pmark) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
352 (if (not ielm-error-type) |
7267 | 353 (condition-case err |
354 ;; Self-referential objects cause loops in the printer, so | |
355 ;; trap quits here. May as well do errors, too | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
356 (setq ielm-output (concat ielm-output (pp-to-string ielm-result))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
357 (error (setq ielm-error-type "IELM Error") |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
358 (setq ielm-result "Error during pretty-printing (bug in pp)")) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
359 (quit (setq ielm-error-type "IELM Error") |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
360 (setq ielm-result "Quit during pretty-printing")))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
361 (if ielm-error-type |
7267 | 362 (progn |
363 (if ielm-noisy (ding)) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
364 (setq ielm-output (concat ielm-output "*** " ielm-error-type " *** ")) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
365 (setq ielm-output (concat ielm-output ielm-result))) |
21834
8ba41a7b6464
(*, **, ***): Add defvars.
Richard M. Stallman <rms@gnu.org>
parents:
21795
diff
changeset
|
366 ;; There was no error, so shift the *** values |
21795
444b6677cc4e
(ielm-eval-input): More of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21781
diff
changeset
|
367 (setq *** **) |
444b6677cc4e
(ielm-eval-input): More of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21781
diff
changeset
|
368 (setq ** *) |
444b6677cc4e
(ielm-eval-input): More of previous change.
Richard M. Stallman <rms@gnu.org>
parents:
21781
diff
changeset
|
369 (setq * ielm-result)) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
370 (setq ielm-output (concat ielm-output "\n")))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
371 (setq ielm-output (concat ielm-output ielm-prompt)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
372 (comint-output-filter (ielm-process) ielm-output))) |
7267 | 373 |
374 ;;; Process and marker utilities | |
375 | |
376 (defun ielm-process nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
377 ;; Return the current buffer's process. |
7267 | 378 (get-buffer-process (current-buffer))) |
379 | |
380 (defun ielm-pm nil | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
381 ;; Return the process mark of the current buffer. |
7267 | 382 (process-mark (get-buffer-process (current-buffer)))) |
383 | |
384 (defun ielm-set-pm (pos) | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
385 ;; Set the process mark in the current buffer to POS. |
7267 | 386 (set-marker (process-mark (get-buffer-process (current-buffer))) pos)) |
387 | |
388 ;;; Major mode | |
389 | |
17649
28037dab627c
(inferior-emacs-lisp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17634
diff
changeset
|
390 (put 'inferior-emacs-lisp-mode 'mode-class 'special) |
28037dab627c
(inferior-emacs-lisp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17634
diff
changeset
|
391 |
7267 | 392 (defun inferior-emacs-lisp-mode nil |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
393 "Major mode for interactively evaluating Emacs Lisp expressions. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
394 Uses the interface provided by `comint-mode' (which see). |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
395 |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
396 * \\<ielm-map>\\[ielm-send-input] evaluates the sexp following the prompt. There must be at most |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
397 one top-level sexp per prompt. |
7267 | 398 |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
399 * \\[ielm-return] inserts a newline and indents, or evaluates a |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
400 complete expression (but see variable `ielm-dynamic-return'). |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
401 Inputs longer than one line are moved to the line following the |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
402 prompt (but see variable `ielm-dynamic-multiline-inputs'). |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
403 |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
404 * \\[comint-dynamic-complete] completes Lisp symbols (or filenames, within strings), |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
405 or indents the line if there is nothing to complete. |
7267 | 406 |
21781
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
407 During evaluations, the values of the variables `*', `**', and `***' |
7267 | 408 are the results of the previous, second previous and third previous |
409 evaluations respectively. | |
410 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
411 The current working buffer may be changed (with a call to |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
412 `set-buffer', or with \\[ielm-change-working-buffer]), and its value |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
413 is preserved between successive evaluations. In this way, expressions |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
414 may be evaluated in a different buffer than the *ielm* buffer. |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
415 Display the name of the working buffer with \\[ielm-print-working-buffer], |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
416 or the buffer itself with \\[ielm-display-working-buffer]. |
7267 | 417 |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
418 Expressions evaluated by IELM are not subject to `debug-on-quit' or |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
419 `debug-on-error'. |
7267 | 420 |
421 The behaviour of IELM may be customised with the following variables: | |
422 * To stop beeping on error, set `ielm-noisy' to nil | |
423 * If you don't like the prompt, you can change it by setting `ielm-prompt'. | |
424 * Set `ielm-dynamic-return' to nil for bindings like `lisp-interaction-mode' | |
425 * Entry to this mode runs `comint-mode-hook' and `ielm-mode-hook' | |
426 (in that order). | |
427 | |
428 Customised bindings may be defined in `ielm-map', which currently contains: | |
429 \\{ielm-map}" | |
430 (interactive) | |
431 (comint-mode) | |
432 (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt))) | |
433 (make-local-variable 'paragraph-start) | |
434 (setq paragraph-start comint-prompt-regexp) | |
435 (setq comint-input-sender 'ielm-input-sender) | |
436 (setq comint-process-echoes nil) | |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
437 (setq comint-dynamic-complete-functions |
7267 | 438 '(ielm-tab comint-replace-by-expanded-history ielm-complete-filename ielm-complete-symbol)) |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
439 (setq comint-get-old-input 'ielm-get-old-input) |
17148
10107950ac5e
(inferior-emacs-lisp-mode): Set comint-completion-addsuffix.
Karl Heuer <kwzh@gnu.org>
parents:
15886
diff
changeset
|
440 (make-local-variable 'comint-completion-addsuffix) |
10107950ac5e
(inferior-emacs-lisp-mode): Set comint-completion-addsuffix.
Karl Heuer <kwzh@gnu.org>
parents:
15886
diff
changeset
|
441 (setq comint-completion-addsuffix |
10107950ac5e
(inferior-emacs-lisp-mode): Set comint-completion-addsuffix.
Karl Heuer <kwzh@gnu.org>
parents:
15886
diff
changeset
|
442 (cons (char-to-string directory-sep-char) "")) |
7267 | 443 |
444 (setq major-mode 'inferior-emacs-lisp-mode) | |
445 (setq mode-name "IELM") | |
446 (use-local-map ielm-map) | |
447 (set-syntax-table emacs-lisp-mode-syntax-table) | |
448 | |
449 (make-local-variable 'indent-line-function) | |
450 (make-local-variable 'ielm-working-buffer) | |
451 (setq ielm-working-buffer (current-buffer)) | |
452 (setq indent-line-function 'ielm-indent-line) | |
15886 | 453 (make-local-variable 'fill-paragraph-function) |
454 (setq fill-paragraph-function 'lisp-fill-paragraph) | |
7267 | 455 |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
456 ;; Value holders |
21781
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
457 (setq * nil) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
458 (make-local-variable '*) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
459 (setq ** nil) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
460 (make-local-variable '**) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
461 (setq *** nil) |
6e9ef4991da8
(ielm-eval-input): Use variables *, **, *** not :, ::, :::.
Richard M. Stallman <rms@gnu.org>
parents:
20953
diff
changeset
|
462 (make-local-variable '***) |
43519
a604392198d7
(ielm-match-data): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43509
diff
changeset
|
463 (set (make-local-variable 'ielm-match-data) nil) |
7267 | 464 |
12439
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
465 ;; font-lock support |
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
466 (make-local-variable 'font-lock-defaults) |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
467 (setq font-lock-defaults |
12439
6141f81a80e5
(ielm-font-lock-keywords): New variable
Richard M. Stallman <rms@gnu.org>
parents:
10981
diff
changeset
|
468 '(ielm-font-lock-keywords nil nil ((?: . "w") (?- . "w") (?* . "w")))) |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
30644
diff
changeset
|
469 |
7267 | 470 ;; A dummy process to keep comint happy. It will never get any input |
471 (if (comint-check-proc (current-buffer)) nil | |
43509
d4b9f0aaf4f7
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
Jason Rumney <jasonr@gnu.org>
parents:
32367
diff
changeset
|
472 ;; Was cat, but on non-Unix platforms that might not exist, so |
d4b9f0aaf4f7
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
Jason Rumney <jasonr@gnu.org>
parents:
32367
diff
changeset
|
473 ;; use hexl instead, which is part of the Emacs distribution. |
d4b9f0aaf4f7
(inferior-emacs-lisp-mode): Use hexl for the dummy process.
Jason Rumney <jasonr@gnu.org>
parents:
32367
diff
changeset
|
474 (start-process "ielm" (current-buffer) "hexl") |
7267 | 475 (process-kill-without-query (ielm-process)) |
476 (goto-char (point-max)) | |
477 ;; Add a silly header | |
478 (insert ielm-header) | |
479 (ielm-set-pm (point-max)) | |
480 (comint-output-filter (ielm-process) ielm-prompt) | |
481 (set-marker comint-last-input-start (ielm-pm)) | |
482 (set-process-filter (get-buffer-process (current-buffer)) 'comint-output-filter)) | |
483 (run-hooks 'ielm-mode-hook)) | |
484 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
485 (defun ielm-get-old-input nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
486 ;; Return the previous input surrounding point |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
487 (save-excursion |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
488 (beginning-of-line) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
489 (if (looking-at comint-prompt-regexp) nil |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
490 (re-search-backward comint-prompt-regexp)) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
491 (comint-skip-prompt) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
492 (buffer-substring (point) (progn (forward-sexp 1) (point))))) |
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
493 |
7267 | 494 ;;; User command |
495 | |
10981
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
496 ;;;###autoload (add-hook 'same-window-buffer-names "*ielm*") |
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
497 |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
498 ;;;###autoload |
7267 | 499 (defun ielm nil |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
500 "Interactively evaluate Emacs Lisp expressions. |
10981
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
501 Switches to the buffer `*ielm*', or creates it if it does not exist." |
7267 | 502 (interactive) |
10981
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
503 (if (comint-check-proc "*ielm*") |
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
504 nil |
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
505 (save-excursion |
7267 | 506 (set-buffer (get-buffer-create "*ielm*")) |
507 (inferior-emacs-lisp-mode))) | |
10981
54697b892d3a
(ielm): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
7842
diff
changeset
|
508 (pop-to-buffer "*ielm*")) |
7267 | 509 |
18383 | 510 (provide 'ielm) |
511 | |
7275
cd1541f4c87c
(ielm-dynamic-multiline-inputs): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7267
diff
changeset
|
512 ;;; ielm.el ends here |