Mercurial > emacs
annotate lisp/ledit.el @ 91098:bbf4813494da
(w32_read_socket) [WM_UNICHAR]: Handle as MULTIBYTE_CHAR_KEYSTROKE_EVENT.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Sat, 17 Nov 2007 03:00:47 +0000 |
parents | f55f9811f5d7 |
children | 606f2d163a64 |
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, |
75347 | 4 ;; 2006, 2007 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 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
36 | 14 ;; any later version. |
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 | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
36 | 25 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
26 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
27 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
923
diff
changeset
|
28 ;; 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
|
29 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
30 ;;; Code: |
36 | 31 |
32 ;;; To do: | |
33 ;;; o lisp -> emacs side of things (grind-definition and find-definition) | |
34 | |
35 (defvar ledit-mode-map nil) | |
36 | |
25416
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
37 (defconst ledit-zap-file |
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
38 (expand-file-name (concat (user-login-name) ".l1") temporary-file-directory) |
36 | 39 "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
|
40 (defconst ledit-read-file |
851241b72ec9
(ledit-zap-file, ledit-read-file, ledit-compile-file):
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
41 (expand-file-name (concat (user-login-name) ".l2") temporary-file-directory) |
36 | 42 "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
|
43 (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
|
44 (expand-file-name (concat (user-login-name) ".l4") temporary-file-directory) |
36 | 45 "File name for data sent to Lisp compiler by Ledit.") |
46 (defconst ledit-buffer "*LEDIT*" | |
47 "Name of buffer in which Ledit accumulates data to send to Lisp.") | |
256 | 48 |
269 | 49 ;;;###autoload |
50 (defconst ledit-save-files t "\ | |
51 *Non-nil means Ledit should save files before transferring to Lisp.") | |
52 ;;;###autoload | |
53 (defconst ledit-go-to-lisp-string "%?lisp" "\ | |
54 *Shell commands to execute to resume Lisp job.") | |
55 ;;;###autoload | |
56 (defconst ledit-go-to-liszt-string "%?liszt" "\ | |
57 *Shell commands to execute to resume Lisp compiler job.") | |
36 | 58 |
59 (defun ledit-save-defun () | |
74259
ab755f5bf208
(ledit-save-defun, ledit-mode): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
60 "Save the current defun in the ledit buffer." |
36 | 61 (interactive) |
62 (save-excursion | |
63 (end-of-defun) | |
64 (let ((end (point))) | |
65 (beginning-of-defun) | |
66 (append-to-buffer ledit-buffer (point) end)) | |
67 (message "Current defun saved for Lisp"))) | |
68 | |
69 (defun ledit-save-region (beg end) | |
70 "Save the current region in the ledit buffer" | |
71 (interactive "r") | |
72 (append-to-buffer ledit-buffer beg end) | |
73 (message "Region saved for Lisp")) | |
74 | |
75 (defun ledit-zap-defun-to-lisp () | |
214 | 76 "Carry the current defun to Lisp." |
36 | 77 (interactive) |
78 (ledit-save-defun) | |
79 (ledit-go-to-lisp)) | |
80 | |
81 (defun ledit-zap-defun-to-liszt () | |
214 | 82 "Carry the current defun to liszt." |
36 | 83 (interactive) |
84 (ledit-save-defun) | |
85 (ledit-go-to-liszt)) | |
86 | |
87 (defun ledit-zap-region-to-lisp (beg end) | |
214 | 88 "Carry the current region to Lisp." |
36 | 89 (interactive "r") |
90 (ledit-save-region beg end) | |
91 (ledit-go-to-lisp)) | |
92 | |
93 (defun ledit-go-to-lisp () | |
94 "Suspend Emacs and restart a waiting Lisp job." | |
95 (interactive) | |
96 (if ledit-save-files | |
97 (save-some-buffers)) | |
98 (if (get-buffer ledit-buffer) | |
99 (save-excursion | |
100 (set-buffer ledit-buffer) | |
101 (goto-char (point-min)) | |
102 (write-region (point-min) (point-max) ledit-zap-file) | |
103 (erase-buffer))) | |
104 (suspend-emacs ledit-go-to-lisp-string) | |
105 (load ledit-read-file t t)) | |
106 | |
107 (defun ledit-go-to-liszt () | |
108 "Suspend Emacs and restart a waiting Liszt job." | |
109 (interactive) | |
110 (if ledit-save-files | |
111 (save-some-buffers)) | |
112 (if (get-buffer ledit-buffer) | |
113 (save-excursion | |
114 (set-buffer ledit-buffer) | |
115 (goto-char (point-min)) | |
116 (insert "(declare (macros t))\n") | |
117 (write-region (point-min) (point-max) ledit-compile-file) | |
118 (erase-buffer))) | |
119 (suspend-emacs ledit-go-to-liszt-string) | |
120 (load ledit-read-file t t)) | |
121 | |
122 (defun ledit-setup () | |
214 | 123 "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
|
124 (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
|
125 (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
|
126 (set-keymap-parent ledit-mode-map lisp-mode-shared-map)) |
36 | 127 (define-key ledit-mode-map "\e\^d" 'ledit-save-defun) |
128 (define-key ledit-mode-map "\e\^r" 'ledit-save-region) | |
129 (define-key ledit-mode-map "\^xz" 'ledit-go-to-lisp) | |
130 (define-key ledit-mode-map "\e\^c" 'ledit-go-to-liszt)) | |
131 | |
132 (ledit-setup) | |
133 | |
256 | 134 ;;;###autoload |
36 | 135 (defun ledit-mode () |
214 | 136 "\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job. |
36 | 137 Like Lisp mode, plus these special commands: |
214 | 138 \\[ledit-save-defun] -- record defun at or after point |
36 | 139 for later transmission to Lisp job. |
214 | 140 \\[ledit-save-region] -- record region for later transmission to Lisp job. |
141 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text. | |
142 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job | |
36 | 143 and transmit saved text. |
74259
ab755f5bf208
(ledit-save-defun, ledit-mode): Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
144 |
36 | 145 \\{ledit-mode-map} |
146 To make Lisp mode automatically change to Ledit mode, | |
147 do (setq lisp-mode-hook 'ledit-from-lisp-mode)" | |
148 (interactive) | |
63374
5e00fa8bd828
(ledit-mode): Use delay-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62734
diff
changeset
|
149 (delay-mode-hooks (lisp-mode)) |
36 | 150 (ledit-from-lisp-mode)) |
151 | |
256 | 152 ;;;###autoload |
36 | 153 (defun ledit-from-lisp-mode () |
154 (use-local-map ledit-mode-map) | |
155 (setq mode-name "Ledit") | |
156 (setq major-mode 'ledit-mode) | |
62734
ff8adc9b90d0
(ledit-from-lisp-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
157 (run-mode-hooks 'ledit-mode-hook)) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
158 |
18383 | 159 (provide 'ledit) |
160 | |
52401 | 161 ;;; arch-tag: f0f1ca13-8d31-478c-ae1b-b448c55a8faf |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
269
diff
changeset
|
162 ;;; ledit.el ends here |