Mercurial > emacs
annotate lisp/ledit.el @ 111119:80b566568995
* lisp/comint.el (comint-password-prompt-regexp): Make it less vague.
Bump custom version.
The initial regexp-opt was bracketed by \\( \\)?, so it might as well
have not been there at all. This change makes it non-optional, and
adds back "^". Hopefully the behaviour is now closer to that of emacs-23,
before it was re-written in http://debbugs.gnu.org/2817.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 23 Oct 2010 12:56:57 -0700 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
1 ;;; ledit.el --- Emacs side of ledit interface |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
2 |
74442 | 3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005, |
106815 | 4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
6 ;; Maintainer: FSF |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
32367
diff
changeset
|
7 ;; Keywords: languages |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
8 |
36 | 9 ;; This file is part of GNU Emacs. |
10 | |
94678
ee5932bf781d
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 |
36 | 12 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
36 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
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/>. |
36 | 23 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
24 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
25 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
26 ;; This is a major mode for editing Liszt. See etc/LEDIT for details. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
28 ;;; Code: |
36 | 29 |
30 ;;; To do: | |
31 ;;; o lisp -> emacs side of things (grind-definition and find-definition) | |
32 | |
33 (defvar ledit-mode-map nil) | |
34 | |
25416
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
35 (defconst ledit-zap-file |
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
36 (expand-file-name (concat (user-login-name) ".l1") temporary-file-directory) |
36 | 37 "File name for data sent to Lisp by Ledit.") |
25416
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
38 (defconst ledit-read-file |
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
39 (expand-file-name (concat (user-login-name) ".l2") temporary-file-directory) |
36 | 40 "File name for data sent to Ledit by Lisp.") |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
25416
diff
changeset
|
41 (defconst ledit-compile-file |
25416
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
42 (expand-file-name (concat (user-login-name) ".l4") temporary-file-directory) |
36 | 43 "File name for data sent to Lisp compiler by Ledit.") |
44 (defconst ledit-buffer "*LEDIT*" | |
45 "Name of buffer in which Ledit accumulates data to send to Lisp.") | |
256 | 46 |
269 | 47 ;;;###autoload |
48 (defconst ledit-save-files t "\ | |
49 *Non-nil means Ledit should save files before transferring to Lisp.") | |
50 ;;;###autoload | |
51 (defconst ledit-go-to-lisp-string "%?lisp" "\ | |
52 *Shell commands to execute to resume Lisp job.") | |
53 ;;;###autoload | |
54 (defconst ledit-go-to-liszt-string "%?liszt" "\ | |
55 *Shell commands to execute to resume Lisp compiler job.") | |
36 | 56 |
57 (defun ledit-save-defun () | |
74259
ab755f5bf208
(ledit-save-defun, ledit-mode): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
58 "Save the current defun in the ledit buffer." |
36 | 59 (interactive) |
60 (save-excursion | |
61 (end-of-defun) | |
62 (let ((end (point))) | |
63 (beginning-of-defun) | |
64 (append-to-buffer ledit-buffer (point) end)) | |
65 (message "Current defun saved for Lisp"))) | |
66 | |
67 (defun ledit-save-region (beg end) | |
68 "Save the current region in the ledit buffer" | |
69 (interactive "r") | |
70 (append-to-buffer ledit-buffer beg end) | |
71 (message "Region saved for Lisp")) | |
72 | |
73 (defun ledit-zap-defun-to-lisp () | |
214 | 74 "Carry the current defun to Lisp." |
36 | 75 (interactive) |
76 (ledit-save-defun) | |
77 (ledit-go-to-lisp)) | |
78 | |
79 (defun ledit-zap-defun-to-liszt () | |
214 | 80 "Carry the current defun to liszt." |
36 | 81 (interactive) |
82 (ledit-save-defun) | |
83 (ledit-go-to-liszt)) | |
84 | |
85 (defun ledit-zap-region-to-lisp (beg end) | |
214 | 86 "Carry the current region to Lisp." |
36 | 87 (interactive "r") |
88 (ledit-save-region beg end) | |
89 (ledit-go-to-lisp)) | |
90 | |
91 (defun ledit-go-to-lisp () | |
92 "Suspend Emacs and restart a waiting Lisp job." | |
93 (interactive) | |
94 (if ledit-save-files | |
95 (save-some-buffers)) | |
96 (if (get-buffer ledit-buffer) | |
105994
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
97 (with-current-buffer ledit-buffer |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
98 (goto-char (point-min)) |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
99 (write-region (point-min) (point-max) ledit-zap-file) |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
100 (erase-buffer))) |
36 | 101 (suspend-emacs ledit-go-to-lisp-string) |
102 (load ledit-read-file t t)) | |
103 | |
104 (defun ledit-go-to-liszt () | |
105 "Suspend Emacs and restart a waiting Liszt job." | |
106 (interactive) | |
107 (if ledit-save-files | |
108 (save-some-buffers)) | |
109 (if (get-buffer ledit-buffer) | |
105994
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
110 (with-current-buffer ledit-buffer |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
111 (goto-char (point-min)) |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
112 (insert "(declare (macros t))\n") |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
113 (write-region (point-min) (point-max) ledit-compile-file) |
009383a57ce8
* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
114 (erase-buffer))) |
36 | 115 (suspend-emacs ledit-go-to-liszt-string) |
116 (load ledit-read-file t t)) | |
117 | |
118 (defun ledit-setup () | |
214 | 119 "Set up key bindings for the Lisp/Emacs interface." |
32367
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
25416
diff
changeset
|
120 (unless ledit-mode-map |
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
25416
diff
changeset
|
121 (setq ledit-mode-map (make-sparse-keymap)) |
7c181d033dae
use lisp-mode-shared-map instead of shared-lisp-mode-map
Sam Steingold <sds@gnu.org>
parents:
25416
diff
changeset
|
122 (set-keymap-parent ledit-mode-map lisp-mode-shared-map)) |
36 | 123 (define-key ledit-mode-map "\e\^d" 'ledit-save-defun) |
124 (define-key ledit-mode-map "\e\^r" 'ledit-save-region) | |
125 (define-key ledit-mode-map "\^xz" 'ledit-go-to-lisp) | |
126 (define-key ledit-mode-map "\e\^c" 'ledit-go-to-liszt)) | |
127 | |
128 (ledit-setup) | |
129 | |
256 | 130 ;;;###autoload |
36 | 131 (defun ledit-mode () |
214 | 132 "\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. |
36 | 133 Like Lisp mode, plus these special commands: |
214 | 134 \\[ledit-save-defun] -- record defun at or after point |
36 | 135 for later transmission to Lisp job. |
214 | 136 \\[ledit-save-region] -- record region for later transmission to Lisp job. |
137 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
138 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
36 | 139 and transmit saved text. |
74259
ab755f5bf208
(ledit-save-defun, ledit-mode): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
140 |
36 | 141 \\{ledit-mode-map} |
142 To make Lisp mode automatically change to Ledit mode, | |
143 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" | |
144 (interactive) | |
63374
5e00fa8bd828
(ledit-mode): Use delay-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62734
diff
changeset
|
145 (delay-mode-hooks (lisp-mode)) |
36 | 146 (ledit-from-lisp-mode)) |
147 | |
256 | 148 ;;;###autoload |
36 | 149 (defun ledit-from-lisp-mode () |
150 (use-local-map ledit-mode-map) | |
151 (setq mode-name "Ledit") | |
152 (setq major-mode 'ledit-mode) | |
62734
ff8adc9b90d0
(ledit-from-lisp-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
153 (run-mode-hooks 'ledit-mode-hook)) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
154 |
18383 | 155 (provide 'ledit) |
156 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79721
diff
changeset
|
157 ;; arch-tag: f0f1ca13-8d31-478c-ae1b-b448c55a8faf |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
158 ;;; ledit.el ends here |