1 ;;; ledit.el --- Emacs side of ledit interface
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
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
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This is a major mode for editing Liszt. See etc/LEDIT for details.
31 ;;; o lisp -> emacs side of things (grind-definition and find-definition)
33 (defvar ledit-mode-map nil
)
35 (defconst ledit-zap-file
36 (expand-file-name (concat (user-login-name) ".l1") temporary-file-directory
)
37 "File name for data sent to Lisp by Ledit.")
38 (defconst ledit-read-file
39 (expand-file-name (concat (user-login-name) ".l2") temporary-file-directory
)
40 "File name for data sent to Ledit by Lisp.")
41 (defconst ledit-compile-file
42 (expand-file-name (concat (user-login-name) ".l4") temporary-file-directory
)
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.")
48 (defconst ledit-save-files t
"\
49 *Non-nil means Ledit should save files before transferring to Lisp.")
51 (defconst ledit-go-to-lisp-string
"%?lisp" "\
52 *Shell commands to execute to resume Lisp job.")
54 (defconst ledit-go-to-liszt-string
"%?liszt" "\
55 *Shell commands to execute to resume Lisp compiler job.")
57 (defun ledit-save-defun ()
58 "Save the current defun in the ledit buffer."
64 (append-to-buffer ledit-buffer
(point) end
))
65 (message "Current defun saved for Lisp")))
67 (defun ledit-save-region (beg end
)
68 "Save the current region in the ledit buffer"
70 (append-to-buffer ledit-buffer beg end
)
71 (message "Region saved for Lisp"))
73 (defun ledit-zap-defun-to-lisp ()
74 "Carry the current defun to Lisp."
79 (defun ledit-zap-defun-to-liszt ()
80 "Carry the current defun to liszt."
85 (defun ledit-zap-region-to-lisp (beg end
)
86 "Carry the current region to Lisp."
88 (ledit-save-region beg end
)
91 (defun ledit-go-to-lisp ()
92 "Suspend Emacs and restart a waiting Lisp job."
96 (if (get-buffer ledit-buffer
)
97 (with-current-buffer ledit-buffer
98 (goto-char (point-min))
99 (write-region (point-min) (point-max) ledit-zap-file
)
101 (suspend-emacs ledit-go-to-lisp-string
)
102 (load ledit-read-file t t
))
104 (defun ledit-go-to-liszt ()
105 "Suspend Emacs and restart a waiting Liszt job."
109 (if (get-buffer ledit-buffer
)
110 (with-current-buffer ledit-buffer
111 (goto-char (point-min))
112 (insert "(declare (macros t))\n")
113 (write-region (point-min) (point-max) ledit-compile-file
)
115 (suspend-emacs ledit-go-to-liszt-string
)
116 (load ledit-read-file t t
))
118 (defun ledit-setup ()
119 "Set up key bindings for the Lisp/Emacs interface."
120 (unless ledit-mode-map
121 (setq ledit-mode-map
(make-sparse-keymap))
122 (set-keymap-parent ledit-mode-map lisp-mode-shared-map
))
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
))
132 "\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
133 Like Lisp mode, plus these special commands:
134 \\[ledit-save-defun] -- record defun at or after point
135 for later transmission to Lisp job.
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
139 and transmit saved text.
142 To make Lisp mode automatically change to Ledit mode,
143 do (setq lisp-mode-hook 'ledit-from-lisp-mode)"
145 (delay-mode-hooks (lisp-mode))
146 (ledit-from-lisp-mode))
149 (defun ledit-from-lisp-mode ()
150 (use-local-map ledit-mode-map
)
151 (setq mode-name
"Ledit")
152 (setq major-mode
'ledit-mode
)
153 (run-mode-hooks 'ledit-mode-hook
))
157 ;; arch-tag: f0f1ca13-8d31-478c-ae1b-b448c55a8faf
158 ;;; ledit.el ends here