Mercurial > emacs
annotate lisp/ledit.el @ 105838:5a494d9d4e4f
(define-obsolete-variable-alias): Use dolist,
and only put a prop if it is non-nil.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 03 Nov 2009 15:28:13 +0000 |
parents | a9dc0e7c3f2b |
children | 009383a57ce8 |
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, |
100908 | 4 ;; 2006, 2007, 2008, 2009 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) | |
97 (save-excursion | |
98 (set-buffer ledit-buffer) | |
99 (goto-char (point-min)) | |
100 (write-region (point-min) (point-max) ledit-zap-file) | |
101 (erase-buffer))) | |
102 (suspend-emacs ledit-go-to-lisp-string) | |
103 (load ledit-read-file t t)) | |
104 | |
105 (defun ledit-go-to-liszt () | |
106 "Suspend Emacs and restart a waiting Liszt job." | |
107 (interactive) | |
108 (if ledit-save-files | |
109 (save-some-buffers)) | |
110 (if (get-buffer ledit-buffer) | |
111 (save-excursion | |
112 (set-buffer ledit-buffer) | |
113 (goto-char (point-min)) | |
114 (insert "(declare (macros t))\n") | |
115 (write-region (point-min) (point-max) ledit-compile-file) | |
116 (erase-buffer))) | |
117 (suspend-emacs ledit-go-to-liszt-string) | |
118 (load ledit-read-file t t)) | |
119 | |
120 (defun ledit-setup () | |
214 | 121 "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
|
122 (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
|
123 (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
|
124 (set-keymap-parent ledit-mode-map lisp-mode-shared-map)) |
36 | 125 (define-key ledit-mode-map "\e\^d" 'ledit-save-defun) |
126 (define-key ledit-mode-map "\e\^r" 'ledit-save-region) | |
127 (define-key ledit-mode-map "\^xz" 'ledit-go-to-lisp) | |
128 (define-key ledit-mode-map "\e\^c" 'ledit-go-to-liszt)) | |
129 | |
130 (ledit-setup) | |
131 | |
256 | 132 ;;;###autoload |
36 | 133 (defun ledit-mode () |
214 | 134 "\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. |
36 | 135 Like Lisp mode, plus these special commands: |
214 | 136 \\[ledit-save-defun] -- record defun at or after point |
36 | 137 for later transmission to Lisp job. |
214 | 138 \\[ledit-save-region] -- record region for later transmission to Lisp job. |
139 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
140 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
36 | 141 and transmit saved text. |
74259
ab755f5bf208
(ledit-save-defun, ledit-mode): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
142 |
36 | 143 \\{ledit-mode-map} |
144 To make Lisp mode automatically change to Ledit mode, | |
145 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" | |
146 (interactive) | |
63374
5e00fa8bd828
(ledit-mode): Use delay-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62734
diff
changeset
|
147 (delay-mode-hooks (lisp-mode)) |
36 | 148 (ledit-from-lisp-mode)) |
149 | |
256 | 150 ;;;###autoload |
36 | 151 (defun ledit-from-lisp-mode () |
152 (use-local-map ledit-mode-map) | |
153 (setq mode-name "Ledit") | |
154 (setq major-mode 'ledit-mode) | |
62734
ff8adc9b90d0
(ledit-from-lisp-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
155 (run-mode-hooks 'ledit-mode-hook)) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
156 |
18383 | 157 (provide 'ledit) |
158 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79721
diff
changeset
|
159 ;; arch-tag: f0f1ca13-8d31-478c-ae1b-b448c55a8faf |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
160 ;;; ledit.el ends here |