1 ;;; ledit.el --- Emacs side of ledit interface
3 ;; Copyright (C) 1985 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; This is a major mode for editing Liszt. See etc/LEDIT for details.
32 ;;; o lisp -> emacs side of things (grind-definition and find-definition)
34 (defvar ledit-mode-map nil
)
36 (defconst ledit-zap-file
(concat "/tmp/" (user-login-name) ".l1")
37 "File name for data sent to Lisp by Ledit.")
38 (defconst ledit-read-file
(concat "/tmp/" (user-login-name) ".l2")
39 "File name for data sent to Ledit by Lisp.")
40 (defconst ledit-compile-file
41 (concat "/tmp/" (user-login-name) ".l4")
42 "File name for data sent to Lisp compiler by Ledit.")
43 (defconst ledit-buffer
"*LEDIT*"
44 "Name of buffer in which Ledit accumulates data to send to Lisp.")
47 (defconst ledit-save-files t
"\
48 *Non-nil means Ledit should save files before transferring to Lisp.")
50 (defconst ledit-go-to-lisp-string
"%?lisp" "\
51 *Shell commands to execute to resume Lisp job.")
53 (defconst ledit-go-to-liszt-string
"%?liszt" "\
54 *Shell commands to execute to resume Lisp compiler job.")
56 (defun ledit-save-defun ()
57 "Save the current defun in the ledit buffer"
63 (append-to-buffer ledit-buffer
(point) end
))
64 (message "Current defun saved for Lisp")))
66 (defun ledit-save-region (beg end
)
67 "Save the current region in the ledit buffer"
69 (append-to-buffer ledit-buffer beg end
)
70 (message "Region saved for Lisp"))
72 (defun ledit-zap-defun-to-lisp ()
73 "Carry the current defun to Lisp."
78 (defun ledit-zap-defun-to-liszt ()
79 "Carry the current defun to liszt."
84 (defun ledit-zap-region-to-lisp (beg end
)
85 "Carry the current region to Lisp."
87 (ledit-save-region beg end
)
90 (defun ledit-go-to-lisp ()
91 "Suspend Emacs and restart a waiting Lisp job."
95 (if (get-buffer ledit-buffer
)
97 (set-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
)
111 (set-buffer ledit-buffer
)
112 (goto-char (point-min))
113 (insert "(declare (macros t))\n")
114 (write-region (point-min) (point-max) ledit-compile-file
)
116 (suspend-emacs ledit-go-to-liszt-string
)
117 (load ledit-read-file t t
))
119 (defun ledit-setup ()
120 "Set up key bindings for the Lisp/Emacs interface."
121 (if (not ledit-mode-map
)
122 (progn (setq ledit-mode-map
(nconc (make-sparse-keymap)
123 shared-lisp-mode-map
))))
124 (define-key ledit-mode-map
"\e\^d" 'ledit-save-defun
)
125 (define-key ledit-mode-map
"\e\^r" 'ledit-save-region
)
126 (define-key ledit-mode-map
"\^xz" 'ledit-go-to-lisp
)
127 (define-key ledit-mode-map
"\e\^c" 'ledit-go-to-liszt
))
133 "\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
134 Like Lisp mode, plus these special commands:
135 \\[ledit-save-defun] -- record defun at or after point
136 for later transmission to Lisp job.
137 \\[ledit-save-region] -- record region for later transmission to Lisp job.
138 \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
139 \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
140 and transmit saved text.
142 To make Lisp mode automatically change to Ledit mode,
143 do (setq lisp-mode-hook 'ledit-from-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-hooks 'ledit-mode-hook
))
157 ;;; ledit.el ends here