1992-05-30 22:12:04 +00:00
|
|
|
;;; ledit.el --- Emacs side of ledit interface
|
|
|
|
|
2011-01-25 04:08:28 +00:00
|
|
|
;; Copyright (C) 1985, 2001-2011 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Maintainer: FSF
|
2001-07-15 16:15:35 +00:00
|
|
|
;; Keywords: languages
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1989-10-31 16:00:07 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This is a major mode for editing Liszt. See etc/LEDIT for details.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
;;; To do:
|
|
|
|
;;; o lisp -> emacs side of things (grind-definition and find-definition)
|
|
|
|
|
|
|
|
(defvar ledit-mode-map nil)
|
|
|
|
|
1999-08-28 18:23:49 +00:00
|
|
|
(defconst ledit-zap-file
|
|
|
|
(expand-file-name (concat (user-login-name) ".l1") temporary-file-directory)
|
1989-10-31 16:00:07 +00:00
|
|
|
"File name for data sent to Lisp by Ledit.")
|
1999-08-28 18:23:49 +00:00
|
|
|
(defconst ledit-read-file
|
|
|
|
(expand-file-name (concat (user-login-name) ".l2") temporary-file-directory)
|
1989-10-31 16:00:07 +00:00
|
|
|
"File name for data sent to Ledit by Lisp.")
|
2000-10-10 17:27:38 +00:00
|
|
|
(defconst ledit-compile-file
|
1999-08-28 18:23:49 +00:00
|
|
|
(expand-file-name (concat (user-login-name) ".l4") temporary-file-directory)
|
1989-10-31 16:00:07 +00:00
|
|
|
"File name for data sent to Lisp compiler by Ledit.")
|
|
|
|
(defconst ledit-buffer "*LEDIT*"
|
|
|
|
"Name of buffer in which Ledit accumulates data to send to Lisp.")
|
1991-05-09 21:50:34 +00:00
|
|
|
|
1991-05-13 22:05:14 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defconst ledit-save-files t "\
|
|
|
|
*Non-nil means Ledit should save files before transferring to Lisp.")
|
|
|
|
;;;###autoload
|
|
|
|
(defconst ledit-go-to-lisp-string "%?lisp" "\
|
|
|
|
*Shell commands to execute to resume Lisp job.")
|
|
|
|
;;;###autoload
|
|
|
|
(defconst ledit-go-to-liszt-string "%?liszt" "\
|
|
|
|
*Shell commands to execute to resume Lisp compiler job.")
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
(defun ledit-save-defun ()
|
2006-11-27 17:01:52 +00:00
|
|
|
"Save the current defun in the ledit buffer."
|
1989-10-31 16:00:07 +00:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(end-of-defun)
|
|
|
|
(let ((end (point)))
|
|
|
|
(beginning-of-defun)
|
|
|
|
(append-to-buffer ledit-buffer (point) end))
|
|
|
|
(message "Current defun saved for Lisp")))
|
|
|
|
|
|
|
|
(defun ledit-save-region (beg end)
|
|
|
|
"Save the current region in the ledit buffer"
|
|
|
|
(interactive "r")
|
|
|
|
(append-to-buffer ledit-buffer beg end)
|
|
|
|
(message "Region saved for Lisp"))
|
|
|
|
|
|
|
|
(defun ledit-zap-defun-to-lisp ()
|
1991-03-12 19:57:55 +00:00
|
|
|
"Carry the current defun to Lisp."
|
1989-10-31 16:00:07 +00:00
|
|
|
(interactive)
|
|
|
|
(ledit-save-defun)
|
|
|
|
(ledit-go-to-lisp))
|
|
|
|
|
|
|
|
(defun ledit-zap-defun-to-liszt ()
|
1991-03-12 19:57:55 +00:00
|
|
|
"Carry the current defun to liszt."
|
1989-10-31 16:00:07 +00:00
|
|
|
(interactive)
|
|
|
|
(ledit-save-defun)
|
|
|
|
(ledit-go-to-liszt))
|
|
|
|
|
|
|
|
(defun ledit-zap-region-to-lisp (beg end)
|
1991-03-12 19:57:55 +00:00
|
|
|
"Carry the current region to Lisp."
|
1989-10-31 16:00:07 +00:00
|
|
|
(interactive "r")
|
|
|
|
(ledit-save-region beg end)
|
|
|
|
(ledit-go-to-lisp))
|
|
|
|
|
|
|
|
(defun ledit-go-to-lisp ()
|
|
|
|
"Suspend Emacs and restart a waiting Lisp job."
|
|
|
|
(interactive)
|
|
|
|
(if ledit-save-files
|
|
|
|
(save-some-buffers))
|
|
|
|
(if (get-buffer ledit-buffer)
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
(with-current-buffer ledit-buffer
|
|
|
|
(goto-char (point-min))
|
|
|
|
(write-region (point-min) (point-max) ledit-zap-file)
|
|
|
|
(erase-buffer)))
|
1989-10-31 16:00:07 +00:00
|
|
|
(suspend-emacs ledit-go-to-lisp-string)
|
|
|
|
(load ledit-read-file t t))
|
|
|
|
|
|
|
|
(defun ledit-go-to-liszt ()
|
|
|
|
"Suspend Emacs and restart a waiting Liszt job."
|
|
|
|
(interactive)
|
|
|
|
(if ledit-save-files
|
|
|
|
(save-some-buffers))
|
|
|
|
(if (get-buffer ledit-buffer)
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
(with-current-buffer ledit-buffer
|
|
|
|
(goto-char (point-min))
|
|
|
|
(insert "(declare (macros t))\n")
|
|
|
|
(write-region (point-min) (point-max) ledit-compile-file)
|
|
|
|
(erase-buffer)))
|
1989-10-31 16:00:07 +00:00
|
|
|
(suspend-emacs ledit-go-to-liszt-string)
|
|
|
|
(load ledit-read-file t t))
|
|
|
|
|
|
|
|
(defun ledit-setup ()
|
1991-03-12 19:57:55 +00:00
|
|
|
"Set up key bindings for the Lisp/Emacs interface."
|
2000-10-10 17:27:38 +00:00
|
|
|
(unless ledit-mode-map
|
|
|
|
(setq ledit-mode-map (make-sparse-keymap))
|
|
|
|
(set-keymap-parent ledit-mode-map lisp-mode-shared-map))
|
1989-10-31 16:00:07 +00:00
|
|
|
(define-key ledit-mode-map "\e\^d" 'ledit-save-defun)
|
|
|
|
(define-key ledit-mode-map "\e\^r" 'ledit-save-region)
|
|
|
|
(define-key ledit-mode-map "\^xz" 'ledit-go-to-lisp)
|
|
|
|
(define-key ledit-mode-map "\e\^c" 'ledit-go-to-liszt))
|
|
|
|
|
|
|
|
(ledit-setup)
|
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1989-10-31 16:00:07 +00:00
|
|
|
(defun ledit-mode ()
|
1991-03-12 19:57:55 +00:00
|
|
|
"\\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
|
1989-10-31 16:00:07 +00:00
|
|
|
Like Lisp mode, plus these special commands:
|
1991-03-12 19:57:55 +00:00
|
|
|
\\[ledit-save-defun] -- record defun at or after point
|
1989-10-31 16:00:07 +00:00
|
|
|
for later transmission to Lisp job.
|
1991-03-12 19:57:55 +00:00
|
|
|
\\[ledit-save-region] -- record region for later transmission to Lisp job.
|
|
|
|
\\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
|
|
|
|
\\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
|
1989-10-31 16:00:07 +00:00
|
|
|
and transmit saved text.
|
2006-11-27 17:01:52 +00:00
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
\\{ledit-mode-map}
|
|
|
|
To make Lisp mode automatically change to Ledit mode,
|
|
|
|
do (setq lisp-mode-hook 'ledit-from-lisp-mode)"
|
|
|
|
(interactive)
|
2005-06-13 12:01:43 +00:00
|
|
|
(delay-mode-hooks (lisp-mode))
|
1989-10-31 16:00:07 +00:00
|
|
|
(ledit-from-lisp-mode))
|
|
|
|
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1989-10-31 16:00:07 +00:00
|
|
|
(defun ledit-from-lisp-mode ()
|
|
|
|
(use-local-map ledit-mode-map)
|
|
|
|
(setq mode-name "Ledit")
|
|
|
|
(setq major-mode 'ledit-mode)
|
2005-05-26 13:02:42 +00:00
|
|
|
(run-mode-hooks 'ledit-mode-hook))
|
1992-05-30 22:12:04 +00:00
|
|
|
|
1997-06-22 18:57:55 +00:00
|
|
|
(provide 'ledit)
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
;;; ledit.el ends here
|