2001-07-15 16:15:35 +00:00
|
|
|
|
;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el
|
1993-03-17 15:20:58 +00:00
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
|
;; Copyright (C) 1988, 1994, 1997, 2001-2017 Free Software Foundation,
|
2013-01-01 09:11:05 +00:00
|
|
|
|
;; Inc.
|
1992-05-30 23:54:21 +00:00
|
|
|
|
|
1992-07-16 19:23:43 +00:00
|
|
|
|
;; Author: Olin Shivers <olin.shivers@cs.cmu.edu>
|
2014-02-10 01:34:22 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1993-03-18 21:29:42 +00:00
|
|
|
|
;; Keywords: processes, lisp
|
1992-07-16 18:28:42 +00:00
|
|
|
|
|
1992-08-04 05:05:40 +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
|
1992-08-04 05:05:40 +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.
|
1992-08-04 05:05:40 +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/>.
|
1992-07-16 18:28:42 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2005-08-08 18:00:19 +00:00
|
|
|
|
;; This is a customization of comint-mode (see comint.el)
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;;
|
|
|
|
|
;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
|
|
|
|
|
;; lifted from scheme.el, shell.el, clisp.el, newclisp.el, cobol.el, et al..
|
|
|
|
|
;; 8/88
|
|
|
|
|
;;
|
|
|
|
|
;; Please send me bug reports, bug fixes, and extensions, so that I can
|
|
|
|
|
;; merge them into the master source.
|
|
|
|
|
;;
|
|
|
|
|
;; The changelog is at the end of this file.
|
|
|
|
|
;;
|
|
|
|
|
;; NOTE: MIT Cscheme, when invoked with the -emacs flag, has a special user
|
|
|
|
|
;; interface that communicates process state back to the superior emacs by
|
2015-06-16 01:24:24 +00:00
|
|
|
|
;; outputting special control sequences. The Emacs package, xscheme.el, has
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; lots and lots of special purpose code to read these control sequences, and
|
|
|
|
|
;; so is very tightly integrated with the cscheme process. The cscheme
|
|
|
|
|
;; interrupt handler and debugger read single character commands in cbreak
|
|
|
|
|
;; mode; when this happens, xscheme.el switches to special keymaps that bind
|
|
|
|
|
;; the single letter command keys to emacs functions that directly send the
|
|
|
|
|
;; character to the scheme process. Cmuscheme mode does *not* provide this
|
|
|
|
|
;; functionality. If you are a cscheme user, you may prefer to use the
|
|
|
|
|
;; xscheme.el/cscheme -emacs interaction.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;;
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; Here's a summary of the pros and cons, as I see them.
|
|
|
|
|
;; xscheme: Tightly integrated with inferior cscheme process! A few commands
|
|
|
|
|
;; not in cmuscheme. But. Integration is a bit of a hack. Input
|
|
|
|
|
;; history only keeps the immediately prior input. Bizarre
|
|
|
|
|
;; keybindings.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;;
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; cmuscheme: Not tightly integrated with inferior cscheme process. But.
|
|
|
|
|
;; Carefully integrated functionality with the entire suite of
|
|
|
|
|
;; comint-derived CMU process modes. Keybindings reminiscent of
|
|
|
|
|
;; Zwei and Hemlock. Good input history. A few commands not in
|
|
|
|
|
;; xscheme.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;;
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; It's a tradeoff. Pay your money; take your choice. If you use a Scheme
|
|
|
|
|
;; that isn't Cscheme, of course, there isn't a choice. Xscheme.el is *very*
|
|
|
|
|
;; Cscheme-specific; you must use cmuscheme.el. Interested parties are
|
|
|
|
|
;; invited to port xscheme functionality on top of comint mode...
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
1998-01-07 12:39:59 +00:00
|
|
|
|
;;; CHANGE LOG
|
2009-02-01 22:32:43 +00:00
|
|
|
|
;; ===========================================================================
|
|
|
|
|
;; 8/88 Olin
|
|
|
|
|
;; Created.
|
|
|
|
|
;;
|
|
|
|
|
;; 2/15/89 Olin
|
|
|
|
|
;; Removed -emacs flag from process invocation. It's only useful for
|
|
|
|
|
;; cscheme, and makes cscheme assume it's running under xscheme.el,
|
|
|
|
|
;; which messes things up royally. A bug.
|
|
|
|
|
;;
|
|
|
|
|
;; 5/22/90 Olin
|
|
|
|
|
;; - Upgraded to use comint-send-string and comint-send-region.
|
|
|
|
|
;; - run-scheme now offers to let you edit the command line if
|
|
|
|
|
;; you invoke it with a prefix-arg. M-x scheme is redundant, and
|
|
|
|
|
;; has been removed.
|
|
|
|
|
;; - Explicit references to process "scheme" have been replaced with
|
|
|
|
|
;; (scheme-proc). This allows better handling of multiple process bufs.
|
|
|
|
|
;; - Added scheme-send-last-sexp, bound to C-x C-e. A gnu convention.
|
|
|
|
|
;; - Have not added process query facility a la cmulisp.el's lisp-show-arglist
|
|
|
|
|
;; and friends, but interested hackers might find a useful application
|
|
|
|
|
;; of this facility.
|
|
|
|
|
;;
|
|
|
|
|
;; 3/12/90 Olin
|
|
|
|
|
;; - scheme-load-file and scheme-compile-file no longer switch-to-scheme.
|
|
|
|
|
;; Tale suggested this.
|
1998-01-07 12:39:59 +00:00
|
|
|
|
|
1992-07-16 18:28:42 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(require 'scheme)
|
|
|
|
|
(require 'comint)
|
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
|
|
|
|
|
(defgroup cmuscheme nil
|
|
|
|
|
"Run a scheme process in a buffer."
|
2000-11-14 14:41:24 +00:00
|
|
|
|
:group 'scheme)
|
1998-03-07 18:19:38 +00:00
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
;;; INFERIOR SCHEME MODE STUFF
|
|
|
|
|
;;;============================================================================
|
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
(defcustom inferior-scheme-mode-hook nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Hook for customizing inferior-scheme mode."
|
1998-03-07 18:19:38 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'cmuscheme)
|
|
|
|
|
|
2000-03-08 23:55:36 +00:00
|
|
|
|
(defvar inferior-scheme-mode-map
|
|
|
|
|
(let ((m (make-sparse-keymap)))
|
|
|
|
|
(define-key m "\M-\C-x" 'scheme-send-definition) ;gnu convention
|
|
|
|
|
(define-key m "\C-x\C-e" 'scheme-send-last-sexp)
|
|
|
|
|
(define-key m "\C-c\C-l" 'scheme-load-file)
|
|
|
|
|
(define-key m "\C-c\C-k" 'scheme-compile-file)
|
|
|
|
|
(scheme-mode-commands m)
|
|
|
|
|
m))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
;; Install the process communication commands in the scheme-mode keymap.
|
|
|
|
|
(define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
|
|
|
|
|
(define-key scheme-mode-map "\C-x\C-e" 'scheme-send-last-sexp);gnu convention
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-r" 'scheme-send-region)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\M-r" 'scheme-send-region-and-go)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(define-key scheme-mode-map "\C-c\C-t" 'scheme-trace-procedure)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-x" 'scheme-expand-current-form)
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(define-key scheme-mode-map "\C-c\C-z" 'switch-to-scheme)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-l" 'scheme-load-file)
|
|
|
|
|
(define-key scheme-mode-map "\C-c\C-k" 'scheme-compile-file) ;k for "kompile"
|
|
|
|
|
|
1997-04-10 06:18:40 +00:00
|
|
|
|
(let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
|
|
|
|
|
(define-key map [separator-eval] '("--"))
|
|
|
|
|
(define-key map [compile-file]
|
|
|
|
|
'("Compile Scheme File" . scheme-compile-file))
|
|
|
|
|
(define-key map [load-file]
|
|
|
|
|
'("Load Scheme File" . scheme-load-file))
|
|
|
|
|
(define-key map [switch]
|
|
|
|
|
'("Switch to Scheme" . switch-to-scheme))
|
|
|
|
|
(define-key map [com-def-go]
|
2004-09-19 02:14:14 +00:00
|
|
|
|
'("Compile Definition & Go" . scheme-compile-definition-and-go))
|
1997-04-10 06:18:40 +00:00
|
|
|
|
(define-key map [com-def]
|
2004-09-19 02:14:14 +00:00
|
|
|
|
'("Compile Definition" . scheme-compile-definition))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(define-key map [exp-form]
|
|
|
|
|
'("Expand current form" . scheme-expand-current-form))
|
|
|
|
|
(define-key map [trace-proc]
|
|
|
|
|
'("Trace procedure" . scheme-trace-procedure))
|
1997-04-10 06:18:40 +00:00
|
|
|
|
(define-key map [send-def-go]
|
|
|
|
|
'("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
|
|
|
|
|
(define-key map [send-def]
|
|
|
|
|
'("Evaluate Last Definition" . scheme-send-definition))
|
|
|
|
|
(define-key map [send-region-go]
|
|
|
|
|
'("Evaluate Region & Go" . scheme-send-region-and-go))
|
|
|
|
|
(define-key map [send-region]
|
|
|
|
|
'("Evaluate Region" . scheme-send-region))
|
|
|
|
|
(define-key map [send-sexp]
|
|
|
|
|
'("Evaluate Last S-expression" . scheme-send-last-sexp))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
)
|
1997-04-10 06:18:40 +00:00
|
|
|
|
|
1992-10-08 06:44:43 +00:00
|
|
|
|
(defvar scheme-buffer)
|
|
|
|
|
|
2000-03-08 23:55:36 +00:00
|
|
|
|
(define-derived-mode inferior-scheme-mode comint-mode "Inferior Scheme"
|
1991-05-13 21:21:58 +00:00
|
|
|
|
"Major mode for interacting with an inferior Scheme process.
|
|
|
|
|
|
|
|
|
|
The following commands are available:
|
|
|
|
|
\\{inferior-scheme-mode-map}
|
|
|
|
|
|
|
|
|
|
A Scheme process can be fired up with M-x run-scheme.
|
|
|
|
|
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
Customization: Entry to this mode runs the hooks on `comint-mode-hook' and
|
|
|
|
|
`inferior-scheme-mode-hook' (in that order).
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
You can send text to the inferior Scheme process from other buffers containing
|
2000-11-14 14:41:24 +00:00
|
|
|
|
Scheme source.
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
`switch-to-scheme' switches the current buffer to the Scheme process buffer.
|
|
|
|
|
`scheme-send-definition' sends the current definition to the Scheme process.
|
|
|
|
|
`scheme-compile-definition' compiles the current definition.
|
|
|
|
|
`scheme-send-region' sends the current region to the Scheme process.
|
|
|
|
|
`scheme-compile-region' compiles the current region.
|
|
|
|
|
|
|
|
|
|
`scheme-send-definition-and-go', `scheme-compile-definition-and-go',
|
|
|
|
|
`scheme-send-region-and-go', and `scheme-compile-region-and-go'
|
1991-05-13 21:21:58 +00:00
|
|
|
|
switch to the Scheme process buffer after sending their text.
|
|
|
|
|
For information on running multiple processes in multiple buffers, see
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
documentation for variable `scheme-buffer'.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
Commands:
|
2000-11-14 14:41:24 +00:00
|
|
|
|
Return after the end of the process' output sends the text from the
|
1991-05-13 21:21:58 +00:00
|
|
|
|
end of process to point.
|
|
|
|
|
Return before the end of the process' output copies the sexp ending at point
|
|
|
|
|
to the end of the process' output, and sends it.
|
|
|
|
|
Delete converts tabs to spaces as it moves back.
|
|
|
|
|
Tab indents for Scheme; with argument, shifts rest
|
|
|
|
|
of expression rigidly with the current line.
|
|
|
|
|
C-M-q does Tab on each line starting within following expression.
|
|
|
|
|
Paragraphs are separated only by blank lines. Semicolons start comments.
|
|
|
|
|
If you accidentally suspend your process, use \\[comint-continue-subjob]
|
|
|
|
|
to continue it."
|
2005-08-08 18:00:19 +00:00
|
|
|
|
;; Customize in inferior-scheme-mode-hook
|
1993-12-23 04:44:57 +00:00
|
|
|
|
(setq comint-prompt-regexp "^[^>\n]*>+ *") ; OK for cscheme, oaklisp, T,...
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(scheme-mode-variables)
|
1994-04-24 08:14:18 +00:00
|
|
|
|
(setq mode-line-process '(":%s"))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(setq comint-input-filter (function scheme-input-filter))
|
2000-03-08 23:55:36 +00:00
|
|
|
|
(setq comint-get-old-input (function scheme-get-old-input)))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
(defcustom inferior-scheme-filter-regexp "\\`\\s *\\S ?\\S ?\\s *\\'"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Input matching this regexp are not saved on the history list.
|
1998-03-07 18:19:38 +00:00
|
|
|
|
Defaults to a regexp ignoring all inputs of 0, 1, or 2 letters."
|
|
|
|
|
:type 'regexp
|
|
|
|
|
:group 'cmuscheme)
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
1992-10-08 06:44:43 +00:00
|
|
|
|
(defun scheme-input-filter (str)
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Don't save anything matching `inferior-scheme-filter-regexp'."
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
(not (string-match-p inferior-scheme-filter-regexp str)))
|
1992-10-08 06:44:43 +00:00
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(defun scheme-get-old-input ()
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Snarf the sexp ending at point."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((end (point)))
|
|
|
|
|
(backward-sexp)
|
|
|
|
|
(buffer-substring (point) end))))
|
|
|
|
|
|
1994-10-18 06:34:44 +00:00
|
|
|
|
;;;###autoload
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(defun run-scheme (cmd)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
"Run an inferior Scheme process, input and output via buffer `*scheme*'.
|
1995-08-16 14:39:29 +00:00
|
|
|
|
If there is a process already running in `*scheme*', switch to that buffer.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
With argument, allows you to edit the command line (default is value
|
2005-08-06 07:37:45 +00:00
|
|
|
|
of `scheme-program-name').
|
2006-12-05 14:20:57 +00:00
|
|
|
|
If the file `~/.emacs_SCHEMENAME' or `~/.emacs.d/init_SCHEMENAME.scm' exists,
|
|
|
|
|
it is given as initial input.
|
2005-08-06 07:37:45 +00:00
|
|
|
|
Note that this may lose due to a timing error if the Scheme processor
|
|
|
|
|
discards input when it starts up.
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
Runs the hook `inferior-scheme-mode-hook' (after the `comint-mode-hook'
|
2005-08-06 07:37:45 +00:00
|
|
|
|
is run).
|
1991-05-13 21:21:58 +00:00
|
|
|
|
\(Type \\[describe-mode] in the process buffer for a list of commands.)"
|
|
|
|
|
|
|
|
|
|
(interactive (list (if current-prefix-arg
|
2000-11-14 14:41:24 +00:00
|
|
|
|
(read-string "Run Scheme: " scheme-program-name)
|
|
|
|
|
scheme-program-name)))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(if (not (comint-check-proc "*scheme*"))
|
2009-02-01 22:32:43 +00:00
|
|
|
|
(let ((cmdlist (split-string-and-unquote cmd)))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(set-buffer (apply 'make-comint "scheme" (car cmdlist)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(scheme-start-file (car cmdlist)) (cdr cmdlist)))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(inferior-scheme-mode)))
|
2000-11-14 14:41:24 +00:00
|
|
|
|
(setq scheme-program-name cmd)
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(setq scheme-buffer "*scheme*")
|
2011-09-22 16:15:52 +00:00
|
|
|
|
(pop-to-buffer-same-window "*scheme*"))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(defun scheme-start-file (prog)
|
|
|
|
|
"Return the name of the start file corresponding to PROG.
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
Search in the directories \"~\" and `user-emacs-directory',
|
|
|
|
|
in this order. Return nil if no start file found."
|
2006-12-09 13:09:34 +00:00
|
|
|
|
(let* ((progname (file-name-nondirectory prog))
|
|
|
|
|
(start-file (concat "~/.emacs_" progname))
|
2007-06-13 00:03:39 +00:00
|
|
|
|
(alt-start-file (concat user-emacs-directory "init_" progname ".scm")))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(if (file-exists-p start-file)
|
|
|
|
|
start-file
|
2006-12-05 14:20:57 +00:00
|
|
|
|
(and (file-exists-p alt-start-file) alt-start-file))))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(defun scheme-send-region (start end)
|
|
|
|
|
"Send the current region to the inferior Scheme process."
|
|
|
|
|
(interactive "r")
|
|
|
|
|
(comint-send-region (scheme-proc) start end)
|
|
|
|
|
(comint-send-string (scheme-proc) "\n"))
|
|
|
|
|
|
|
|
|
|
(defun scheme-send-definition ()
|
|
|
|
|
"Send the current definition to the inferior Scheme process."
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-defun)
|
|
|
|
|
(let ((end (point)))
|
|
|
|
|
(beginning-of-defun)
|
|
|
|
|
(scheme-send-region (point) end))))
|
|
|
|
|
|
|
|
|
|
(defun scheme-send-last-sexp ()
|
|
|
|
|
"Send the previous sexp to the inferior Scheme process."
|
|
|
|
|
(interactive)
|
|
|
|
|
(scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
|
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
(defcustom scheme-compile-exp-command "(compile '%s)"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Template for issuing commands to compile arbitrary Scheme expressions."
|
1998-03-07 18:19:38 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'cmuscheme)
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defun scheme-compile-region (start end)
|
1992-10-06 20:00:55 +00:00
|
|
|
|
"Compile the current region in the inferior Scheme process.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
\(A BEGIN is wrapped around the region: (BEGIN <region>))"
|
|
|
|
|
(interactive "r")
|
|
|
|
|
(comint-send-string (scheme-proc) (format scheme-compile-exp-command
|
|
|
|
|
(format "(begin %s)"
|
|
|
|
|
(buffer-substring start end))))
|
|
|
|
|
(comint-send-string (scheme-proc) "\n"))
|
|
|
|
|
|
|
|
|
|
(defun scheme-compile-definition ()
|
|
|
|
|
"Compile the current definition in the inferior Scheme process."
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-defun)
|
|
|
|
|
(let ((end (point)))
|
|
|
|
|
(beginning-of-defun)
|
|
|
|
|
(scheme-compile-region (point) end))))
|
|
|
|
|
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(defcustom scheme-trace-command "(trace %s)"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Template for issuing commands to trace a Scheme procedure.
|
2005-08-06 07:37:45 +00:00
|
|
|
|
Some Scheme implementations might require more elaborate commands here.
|
|
|
|
|
For PLT-Scheme, e.g., one should use
|
|
|
|
|
|
|
|
|
|
(setq scheme-trace-command \"(begin (require (lib \\\"trace.ss\\\")) (trace %s))\")
|
|
|
|
|
|
|
|
|
|
For Scheme 48 and Scsh use \",trace %s\"."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'cmuscheme)
|
|
|
|
|
|
|
|
|
|
(defcustom scheme-untrace-command "(untrace %s)"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Template for switching off tracing of a Scheme procedure.
|
2005-08-06 07:37:45 +00:00
|
|
|
|
Scheme 48 and Scsh users should set this variable to \",untrace %s\"."
|
|
|
|
|
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'cmuscheme)
|
|
|
|
|
|
|
|
|
|
(defun scheme-trace-procedure (proc &optional untrace)
|
|
|
|
|
"Trace procedure PROC in the inferior Scheme process.
|
|
|
|
|
With a prefix argument switch off tracing of procedure PROC."
|
|
|
|
|
(interactive
|
|
|
|
|
(list (let ((current (symbol-at-point))
|
|
|
|
|
(action (if current-prefix-arg "Untrace" "Trace")))
|
|
|
|
|
(if current
|
|
|
|
|
(read-string (format "%s procedure [%s]: " action current) nil nil (symbol-name current))
|
|
|
|
|
(read-string (format "%s procedure: " action))))
|
|
|
|
|
current-prefix-arg))
|
|
|
|
|
(when (= (length proc) 0)
|
|
|
|
|
(error "Invalid procedure name"))
|
|
|
|
|
(comint-send-string (scheme-proc)
|
2005-08-08 17:53:51 +00:00
|
|
|
|
(format
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(if untrace scheme-untrace-command scheme-trace-command)
|
|
|
|
|
proc))
|
|
|
|
|
(comint-send-string (scheme-proc) "\n"))
|
|
|
|
|
|
|
|
|
|
(defcustom scheme-macro-expand-command "(expand %s)"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Template for macro-expanding a Scheme form.
|
2005-08-06 07:37:45 +00:00
|
|
|
|
For Scheme 48 and Scsh use \",expand %s\"."
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'cmuscheme)
|
|
|
|
|
|
|
|
|
|
(defun scheme-expand-current-form ()
|
|
|
|
|
"Macro-expand the form at point in the inferior Scheme process."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((current-form (scheme-form-at-point)))
|
|
|
|
|
(if current-form
|
|
|
|
|
(progn
|
|
|
|
|
(comint-send-string (scheme-proc)
|
2005-08-08 17:53:51 +00:00
|
|
|
|
(format
|
2005-08-06 07:37:45 +00:00
|
|
|
|
scheme-macro-expand-command
|
|
|
|
|
current-form))
|
2005-08-08 17:53:51 +00:00
|
|
|
|
(comint-send-string (scheme-proc) "\n"))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(error "Not at a form"))))
|
|
|
|
|
|
|
|
|
|
(defun scheme-form-at-point ()
|
|
|
|
|
(let ((next-sexp (thing-at-point 'sexp)))
|
|
|
|
|
(if (and next-sexp (string-equal (substring next-sexp 0 1) "("))
|
|
|
|
|
next-sexp
|
|
|
|
|
(save-excursion
|
|
|
|
|
(backward-up-list)
|
|
|
|
|
(scheme-form-at-point)))))
|
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(defun switch-to-scheme (eob-p)
|
lisp/*.el: Fix typos; use string-match-p, looking-at-p, setq-local, defvar-local.
* lisp/allout-widgets.el (allout-widgets-mode-off)
(allout-widgets-mode-on, allout-widgets-pre-command-business)
(allout-widgets-post-command-business)
(allout-widgets-after-copy-or-kill-function)
(allout-widgets-after-undo-function, allout-test-range-overlaps)
(allout-decorate-item-and-context)
(allout-graphics-modification-handler): Fix typos in docstrings.
(allout-get-or-create-parent-widget): Use `looking-at-p'.
* lisp/cmuscheme.el (scheme-start-file): Doc fix.
(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
(scheme-input-filter): Use `string-match-p'.
* lisp/composite.el (compose-gstring-for-terminal): Fix typo in docstring.
* lisp/dired-x.el: Use Dired consistently in docstrings.
* lisp/dired.el: Use Dired consistently in docstrings.
(dired-readin, dired-mode): Use `setq-local'.
(dired-switches-alist): Make defvar-local.
(dired-buffers-for-dir): Use `zerop'.
(dired-safe-switches-p, dired-switches-escape-p)
(dired-insert-old-subdirs, dired-move-to-end-of-filename)
(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
(dired-goto-next-nontrivial-file): Use `string-match-p'.
(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
(dired-toggle-marks, dired-mark-files-containing-regexp)
(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
(dired-flag-auto-save-files, dired-flag-backup-files):
Use `looking-at-p'.
(dired-mark-files-regexp, dired-build-subdir-alist):
Use `string-match-p', `looking-at-p'.
* lisp/dos-w32.el (untranslated-canonical-name, untranslated-file-p)
(direct-print-region-helper): Use `string-match-p'.
2013-06-21 12:24:37 +00:00
|
|
|
|
"Switch to the Scheme process buffer.
|
2000-11-14 14:41:24 +00:00
|
|
|
|
With argument, position cursor at end of buffer."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive "P")
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(if (or (and scheme-buffer (get-buffer scheme-buffer))
|
|
|
|
|
(scheme-interactively-start-process))
|
2011-09-22 16:15:52 +00:00
|
|
|
|
(pop-to-buffer-same-window scheme-buffer)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(error "No current process buffer. See variable `scheme-buffer'"))
|
|
|
|
|
(when eob-p
|
|
|
|
|
(push-mark)
|
|
|
|
|
(goto-char (point-max))))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defun scheme-send-region-and-go (start end)
|
1992-10-06 20:00:55 +00:00
|
|
|
|
"Send the current region to the inferior Scheme process.
|
|
|
|
|
Then switch to the process buffer."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive "r")
|
|
|
|
|
(scheme-send-region start end)
|
|
|
|
|
(switch-to-scheme t))
|
|
|
|
|
|
|
|
|
|
(defun scheme-send-definition-and-go ()
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Send the current definition to the inferior Scheme.
|
1992-10-06 20:00:55 +00:00
|
|
|
|
Then switch to the process buffer."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(scheme-send-definition)
|
|
|
|
|
(switch-to-scheme t))
|
|
|
|
|
|
|
|
|
|
(defun scheme-compile-definition-and-go ()
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Compile the current definition in the inferior Scheme.
|
1992-10-06 20:00:55 +00:00
|
|
|
|
Then switch to the process buffer."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(scheme-compile-definition)
|
|
|
|
|
(switch-to-scheme t))
|
|
|
|
|
|
|
|
|
|
(defun scheme-compile-region-and-go (start end)
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Compile the current region in the inferior Scheme.
|
1992-10-06 20:00:55 +00:00
|
|
|
|
Then switch to the process buffer."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive "r")
|
|
|
|
|
(scheme-compile-region start end)
|
|
|
|
|
(switch-to-scheme t))
|
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
(defcustom scheme-source-modes '(scheme-mode)
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Used to determine if a buffer contains Scheme source code.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
If it's loaded into a buffer that is in one of these major modes, it's
|
2000-11-14 14:41:24 +00:00
|
|
|
|
considered a scheme source file by `scheme-load-file' and `scheme-compile-file'.
|
1998-03-07 18:19:38 +00:00
|
|
|
|
Used by these commands to determine defaults."
|
|
|
|
|
:type '(repeat function)
|
|
|
|
|
:group 'cmuscheme)
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defvar scheme-prev-l/c-dir/file nil
|
1992-10-06 20:00:55 +00:00
|
|
|
|
"Caches the last (directory . file) pair.
|
2000-11-14 14:41:24 +00:00
|
|
|
|
Caches the last pair used in the last `scheme-load-file' or
|
2005-08-08 18:00:19 +00:00
|
|
|
|
`scheme-compile-file' command. Used for determining the default
|
|
|
|
|
in the next one.")
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defun scheme-load-file (file-name)
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Load a Scheme file FILE-NAME into the inferior Scheme process."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive (comint-get-source "Load Scheme file: " scheme-prev-l/c-dir/file
|
2001-12-20 18:59:32 +00:00
|
|
|
|
scheme-source-modes t)) ; t because `load'
|
1991-05-13 21:21:58 +00:00
|
|
|
|
; needs an exact name
|
|
|
|
|
(comint-check-source file-name) ; Check to see if buffer needs saved.
|
|
|
|
|
(setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
|
|
|
|
|
(file-name-nondirectory file-name)))
|
|
|
|
|
(comint-send-string (scheme-proc) (concat "(load \""
|
|
|
|
|
file-name
|
2015-09-17 23:08:20 +00:00
|
|
|
|
"\")\n")))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defun scheme-compile-file (file-name)
|
2000-11-14 14:41:24 +00:00
|
|
|
|
"Compile a Scheme file FILE-NAME in the inferior Scheme process."
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(interactive (comint-get-source "Compile Scheme file: "
|
|
|
|
|
scheme-prev-l/c-dir/file
|
|
|
|
|
scheme-source-modes
|
2001-12-20 18:59:32 +00:00
|
|
|
|
nil)) ; nil because COMPILE doesn't
|
1991-05-13 21:21:58 +00:00
|
|
|
|
; need an exact name.
|
|
|
|
|
(comint-check-source file-name) ; Check to see if buffer needs saved.
|
|
|
|
|
(setq scheme-prev-l/c-dir/file (cons (file-name-directory file-name)
|
|
|
|
|
(file-name-nondirectory file-name)))
|
|
|
|
|
(comint-send-string (scheme-proc) (concat "(compile-file \""
|
|
|
|
|
file-name
|
2015-09-17 23:08:20 +00:00
|
|
|
|
"\")\n")))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
|
2013-02-21 21:50:14 +00:00
|
|
|
|
(defvar scheme-buffer nil "The current scheme process buffer.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
MULTIPLE PROCESS SUPPORT
|
|
|
|
|
===========================================================================
|
|
|
|
|
Cmuscheme.el supports, in a fairly simple fashion, running multiple Scheme
|
2000-11-14 14:41:24 +00:00
|
|
|
|
processes. To run multiple Scheme processes, you start the first up with
|
|
|
|
|
\\[run-scheme]. It will be in a buffer named *scheme*. Rename this buffer
|
|
|
|
|
with \\[rename-buffer]. You may now start up a new process with another
|
|
|
|
|
\\[run-scheme]. It will be in a new buffer, named *scheme*. You can
|
1991-05-13 21:21:58 +00:00
|
|
|
|
switch between the different process buffers with \\[switch-to-buffer].
|
|
|
|
|
|
|
|
|
|
Commands that send text from source buffers to Scheme processes --
|
2000-11-14 14:41:24 +00:00
|
|
|
|
like `scheme-send-definition' or `scheme-compile-region' -- have to choose a
|
|
|
|
|
process to send to, when you have more than one Scheme process around. This
|
|
|
|
|
is determined by the global variable `scheme-buffer'. Suppose you
|
1991-05-13 21:21:58 +00:00
|
|
|
|
have three inferior Schemes running:
|
|
|
|
|
Buffer Process
|
|
|
|
|
foo scheme
|
|
|
|
|
bar scheme<2>
|
|
|
|
|
*scheme* scheme<3>
|
|
|
|
|
If you do a \\[scheme-send-definition-and-go] command on some Scheme source
|
|
|
|
|
code, what process do you send it to?
|
|
|
|
|
|
2000-11-14 14:41:24 +00:00
|
|
|
|
- If you're in a process buffer (foo, bar, or *scheme*),
|
1991-05-13 21:21:58 +00:00
|
|
|
|
you send it to that process.
|
|
|
|
|
- If you're in some other buffer (e.g., a source file), you
|
2000-11-14 14:41:24 +00:00
|
|
|
|
send it to the process attached to buffer `scheme-buffer'.
|
|
|
|
|
This process selection is performed by function `scheme-proc'.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
2000-11-14 14:41:24 +00:00
|
|
|
|
Whenever \\[run-scheme] fires up a new process, it resets `scheme-buffer'
|
|
|
|
|
to be the new process's buffer. If you only run one process, this will
|
2013-02-22 01:59:28 +00:00
|
|
|
|
do the right thing. If you run multiple processes, you might need to
|
|
|
|
|
set `scheme-buffer' to whichever process buffer you want to use.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
2000-11-14 14:41:24 +00:00
|
|
|
|
More sophisticated approaches are, of course, possible. If you find yourself
|
1991-05-13 21:21:58 +00:00
|
|
|
|
needing to switch back and forth between multiple processes frequently,
|
|
|
|
|
you may wish to consider ilisp.el, a larger, more sophisticated package
|
2000-11-14 14:41:24 +00:00
|
|
|
|
for running inferior Lisp and Scheme processes. The approach taken here is
|
|
|
|
|
for a minimal, simple implementation. Feel free to extend it.")
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
(defun scheme-proc ()
|
2005-08-06 07:37:45 +00:00
|
|
|
|
"Return the current Scheme process, starting one if necessary.
|
|
|
|
|
See variable `scheme-buffer'."
|
|
|
|
|
(unless (and scheme-buffer
|
2005-08-08 17:53:51 +00:00
|
|
|
|
(get-buffer scheme-buffer)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
(comint-check-proc scheme-buffer))
|
|
|
|
|
(scheme-interactively-start-process))
|
|
|
|
|
(or (scheme-get-process)
|
|
|
|
|
(error "No current process. See variable `scheme-buffer'")))
|
|
|
|
|
|
|
|
|
|
(defun scheme-get-process ()
|
|
|
|
|
"Return the current Scheme process or nil if none is running."
|
|
|
|
|
(get-buffer-process (if (eq major-mode 'inferior-scheme-mode)
|
|
|
|
|
(current-buffer)
|
|
|
|
|
scheme-buffer)))
|
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(defun scheme-interactively-start-process (&optional _cmd)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
"Start an inferior Scheme process. Return the process started.
|
|
|
|
|
Since this command is run implicitly, always ask the user for the
|
|
|
|
|
command to run."
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(run-scheme (read-string "Run Scheme: " scheme-program-name))))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
2005-08-08 18:00:19 +00:00
|
|
|
|
;;; Do the user's customization...
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
1998-03-07 18:19:38 +00:00
|
|
|
|
(defcustom cmuscheme-load-hook nil
|
1991-05-13 21:21:58 +00:00
|
|
|
|
"This hook is run when cmuscheme is loaded in.
|
1998-03-07 18:19:38 +00:00
|
|
|
|
This is a good place to put keybindings."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'cmuscheme)
|
2003-02-04 11:26:42 +00:00
|
|
|
|
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(run-hooks 'cmuscheme-load-hook)
|
|
|
|
|
|
1992-03-16 20:39:07 +00:00
|
|
|
|
(provide 'cmuscheme)
|
1992-05-30 23:54:21 +00:00
|
|
|
|
|
|
|
|
|
;;; cmuscheme.el ends here
|