2021-04-09 14:12:35 +00:00
|
|
|
|
;;; cmuscheme.el --- Scheme process in a buffer. Adapted from tea.el -*- lexical-binding: t -*-
|
1993-03-17 15:20:58 +00:00
|
|
|
|
|
2022-01-01 07:45:51 +00:00
|
|
|
|
;; Copyright (C) 1988-2022 Free Software Foundation, 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>
|
2019-05-25 20:43:06 +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
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://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
|
|
|
|
;;
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; Written by Olin Shivers (olin.shivers@cs.cmu.edu). With bits and pieces
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; 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.
|
|
|
|
|
;;
|
|
|
|
|
;; NOTE: MIT Cscheme, when invoked with the -emacs flag, has a special user
|
2021-09-14 06:43:18 +00:00
|
|
|
|
;; interface that communicates process state back to the superior Emacs by
|
2021-04-09 14:12:35 +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
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; so is very tightly integrated with the cscheme process. The cscheme
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; interrupt handler and debugger read single character commands in cbreak
|
|
|
|
|
;; mode; when this happens, xscheme.el switches to special keymaps that bind
|
2021-09-14 06:43:18 +00:00
|
|
|
|
;; the single letter command keys to Emacs functions that directly send the
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; character to the scheme process. Cmuscheme mode does *not* provide this
|
2021-09-14 06:43:18 +00:00
|
|
|
|
;; functionality. If you are a cscheme user, you may prefer to use the
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; 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
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; not in cmuscheme. But. Integration is a bit of a hack. Input
|
|
|
|
|
;; history only keeps the immediately prior input. Bizarre
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; 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
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; comint-derived CMU process modes. Keybindings reminiscent of
|
|
|
|
|
;; Zwei and Hemlock. Good input history. A few commands not in
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; xscheme.
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;;
|
2021-04-09 14:12:35 +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*
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; 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
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; Removed -emacs flag from process invocation. It's only useful for
|
2009-02-01 22:32:43 +00:00
|
|
|
|
;; cscheme, and makes cscheme assume it's running under xscheme.el,
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; which messes things up royally. A bug.
|
2009-02-01 22:32:43 +00:00
|
|
|
|
;;
|
|
|
|
|
;; 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
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; you invoke it with a prefix-arg. M-x scheme is redundant, and
|
2009-02-01 22:32:43 +00:00
|
|
|
|
;; has been removed.
|
|
|
|
|
;; - Explicit references to process "scheme" have been replaced with
|
2021-04-09 14:12:35 +00:00
|
|
|
|
;; (scheme-proc). This allows better handling of multiple process bufs.
|
|
|
|
|
;; - Added scheme-send-last-sexp, bound to C-x C-e. A gnu convention.
|
2009-02-01 22:32:43 +00:00
|
|
|
|
;; - 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
|
|
|
|
|
|
|
|
|
(defcustom inferior-scheme-mode-hook nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Hook for customizing inferior-scheme mode."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'hook)
|
1998-03-07 18:19:38 +00:00
|
|
|
|
|
2000-03-08 23:55:36 +00:00
|
|
|
|
(defvar inferior-scheme-mode-map
|
|
|
|
|
(let ((m (make-sparse-keymap)))
|
2021-04-09 14:12:35 +00:00
|
|
|
|
(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)
|
2000-03-08 23:55:36 +00:00
|
|
|
|
(scheme-mode-commands m)
|
|
|
|
|
m))
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
|
|
|
|
;; Install the process communication commands in the scheme-mode keymap.
|
2021-04-09 14:12:35 +00:00
|
|
|
|
(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)
|
|
|
|
|
(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)
|
|
|
|
|
(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"
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
2021-03-01 21:12:43 +00:00
|
|
|
|
(let ((map (lookup-key scheme-mode-map [menu-bar scheme])))
|
1997-04-10 06:18:40 +00:00
|
|
|
|
(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]
|
2021-04-09 14:12:35 +00:00
|
|
|
|
'("Evaluate Last S-expression" . scheme-send-last-sexp)))
|
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}
|
|
|
|
|
|
2021-09-14 06:43:18 +00:00
|
|
|
|
A Scheme process can be fired up with \\[run-scheme].
|
1991-05-13 21:21:58 +00:00
|
|
|
|
|
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.
|
2021-09-22 18:26:40 +00:00
|
|
|
|
\\[indent-pp-sexp] does Tab on each line starting within following expression.
|
1991-05-13 21:21:58 +00:00
|
|
|
|
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))
|
2022-05-12 12:15:12 +00:00
|
|
|
|
(setq-local comint-prompt-read-only t)
|
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."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'regexp)
|
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)))
|
2021-04-09 14:12:35 +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*")
|
2021-12-28 22:27:41 +00:00
|
|
|
|
(pop-to-buffer "*scheme*" display-comint-buffer-action))
|
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))
|
2021-11-09 06:51:18 +00:00
|
|
|
|
(alt-start-file (locate-user-emacs-file
|
|
|
|
|
(concat "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."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'string)
|
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.
|
lisp/*.el: Fix typos and other trivial doc fixes
* lisp/allout-widgets.el (allout-widgets-auto-activation)
(allout-current-decorated-p):
* lisp/auth-source.el (auth-source-protocols):
* lisp/autorevert.el (auto-revert-set-timer):
* lisp/battery.el (battery-mode-line-limit):
* lisp/calc/calcalg3.el (math-map-binop):
* lisp/calendar/cal-dst.el (calendar-dst-find-startend):
* lisp/calendar/cal-mayan.el (calendar-mayan-long-count-to-absolute):
* lisp/calendar/calendar.el (calendar-date-echo-text)
(calendar-generate-month, calendar-string-spread)
(calendar-cursor-to-date, calendar-read, calendar-read-date)
(calendar-mark-visible-date, calendar-dayname-on-or-before):
* lisp/calendar/diary-lib.el (diary-ordinal-suffix):
* lisp/cedet/ede/autoconf-edit.el (autoconf-new-program)
(autoconf-find-last-macro, autoconf-parameter-strip):
* lisp/cedet/ede/config.el (ede-target-with-config-build):
* lisp/cedet/ede/linux.el (ede-linux--detect-architecture)
(ede-linux--get-architecture):
* lisp/cedet/semantic/complete.el (semantic-collector-calculate-cache)
(semantic-displayer-abstract, semantic-displayer-point-position):
* lisp/cedet/semantic/format.el (semantic-format-face-alist)
(semantic-format-tag-short-doc):
* lisp/cedet/semantic/fw.el (semantic-find-file-noselect):
* lisp/cedet/semantic/idle.el (semantic-idle-scheduler-work-idle-time)
(semantic-idle-breadcrumbs-display-function)
(semantic-idle-breadcrumbs-format-tag-list-function):
* lisp/cedet/semantic/lex.el (semantic-lex-map-types)
(define-lex, define-lex-block-type-analyzer):
* lisp/cedet/semantic/senator.el (senator-search-default-tag-filter):
* lisp/cedet/semantic/symref.el (semantic-symref-result)
(semantic-symref-hit-to-tag-via-db):
* lisp/cedet/semantic/symref.el (semantic-symref-tool-baseclass):
* lisp/cedet/semantic/tag.el (semantic-tag-new-variable)
(semantic-tag-new-include, semantic-tag-new-package)
(semantic-tag-set-faux, semantic-create-tag-proxy)
(semantic-tag-function-parent)
(semantic-tag-components-with-overlays):
* lisp/cedet/srecode/cpp.el (srecode-cpp-namespaces)
(srecode-semantic-handle-:c, srecode-semantic-apply-tag-to-dict):
* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary)
(srecode-dictionary-add-entries, srecode-dictionary-lookup-name)
(srecode-create-dictionaries-from-tags):
* lisp/cmuscheme.el (scheme-compile-region):
* lisp/color.el (color-lab-to-lch):
* lisp/doc-view.el (doc-view-image-width)
(doc-view-set-up-single-converter):
* lisp/dynamic-setting.el (font-setting-change-default-font)
(dynamic-setting-handle-config-changed-event):
* lisp/elec-pair.el (electric-pair-text-pairs)
(electric-pair-skip-whitespace-function)
(electric-pair-string-bound-function):
* lisp/emacs-lisp/avl-tree.el (avl-tree--del-balance)
(avl-tree-member, avl-tree-mapcar, avl-tree-iter):
* lisp/emacs-lisp/bytecomp.el (byte-compile-generate-call-tree):
* lisp/emacs-lisp/checkdoc.el (checkdoc-autofix-flag)
(checkdoc-spellcheck-documentation-flag, checkdoc-ispell)
(checkdoc-ispell-current-buffer, checkdoc-ispell-interactive)
(checkdoc-ispell-message-interactive)
(checkdoc-ispell-message-text, checkdoc-ispell-start)
(checkdoc-ispell-continue, checkdoc-ispell-comments)
(checkdoc-ispell-defun):
* lisp/emacs-lisp/cl-generic.el (cl--generic-search-method):
* lisp/emacs-lisp/eieio-custom.el (eieio-read-customization-group):
* lisp/emacs-lisp/lisp.el (forward-sexp, up-list):
* lisp/emacs-lisp/package-x.el (package--archive-contents-from-file):
* lisp/emacs-lisp/package.el (package-desc)
(package--make-autoloads-and-stuff, package-hidden-regexps):
* lisp/emacs-lisp/tcover-ses.el (ses-exercise-startup):
* lisp/emacs-lisp/testcover.el (testcover-nohits)
(testcover-1value):
* lisp/epg.el (epg-receive-keys, epg-start-edit-key):
* lisp/erc/erc-backend.el (erc-server-processing-p)
(erc-split-line-length, erc-server-coding-system)
(erc-server-send, erc-message):
* lisp/erc/erc-button.el (erc-button-face, erc-button-alist)
(erc-browse-emacswiki):
* lisp/erc/erc-ezbounce.el (erc-ezbounce, erc-ezb-get-login):
* lisp/erc/erc-fill.el (erc-fill-variable-maximum-indentation):
* lisp/erc/erc-log.el (erc-current-logfile):
* lisp/erc/erc-match.el (erc-log-match-format)
(erc-text-matched-hook):
* lisp/erc/erc-netsplit.el (erc-netsplit, erc-netsplit-debug):
* lisp/erc/erc-networks.el (erc-server-alist)
(erc-networks-alist, erc-current-network):
* lisp/erc/erc-ring.el (erc-input-ring-index):
* lisp/erc/erc-speedbar.el (erc-speedbar)
(erc-speedbar-update-channel):
* lisp/erc/erc-stamp.el (erc-timestamp-only-if-changed-flag):
* lisp/erc/erc-track.el (erc-track-position-in-mode-line)
(erc-track-remove-from-mode-line, erc-modified-channels-update)
(erc-track-last-non-erc-buffer, erc-track-sort-by-importance)
(erc-track-get-active-buffer):
* lisp/erc/erc.el (erc-get-channel-user-list)
(erc-echo-notice-hook, erc-echo-notice-always-hook)
(erc-wash-quit-reason, erc-format-@nick):
* lisp/ffap.el (ffap-latex-mode):
* lisp/files.el (abort-if-file-too-large)
(dir-locals--get-sort-score, buffer-stale--default-function):
* lisp/filesets.el (filesets-tree-max-level, filesets-data)
(filesets-update-pre010505):
* lisp/gnus/gnus-agent.el (gnus-agent-flush-cache):
* lisp/gnus/gnus-art.el (gnus-article-encrypt-protocol)
(gnus-button-prefer-mid-or-mail):
* lisp/gnus/gnus-cus.el (gnus-group-parameters):
* lisp/gnus/gnus-demon.el (gnus-demon-handlers)
(gnus-demon-run-callback):
* lisp/gnus/gnus-dired.el (gnus-dired-print):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-buffer):
* lisp/gnus/gnus-range.el (gnus-range-normalize):
* lisp/gnus/gnus-spec.el (gnus-pad-form):
* lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud)
(gnus-server-opened, gnus-server-closed, gnus-server-denied)
(gnus-server-offline):
* lisp/gnus/gnus-sum.el (gnus-refer-thread-use-nnir)
(gnus-refer-thread-limit-to-thread)
(gnus-summary-limit-include-thread, gnus-summary-refer-thread)
(gnus-summary-find-matching):
* lisp/gnus/gnus-util.el (gnus-rescale-image):
* lisp/gnus/gnus.el (gnus-summary-line-format, gnus-no-server):
* lisp/gnus/mail-source.el (mail-source-incoming-file-prefix):
* lisp/gnus/message.el (message-cite-reply-position)
(message-cite-style-outlook, message-cite-style-thunderbird)
(message-cite-style-gmail, message--send-mail-maybe-partially):
* lisp/gnus/mm-extern.el (mm-inline-external-body):
* lisp/gnus/mm-partial.el (mm-inline-partial):
* lisp/gnus/mml-sec.el (mml-secure-message-sign)
(mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
* lisp/gnus/mml2015.el (mml2015-epg-key-image)
(mml2015-epg-key-image-to-string):
* lisp/gnus/nndiary.el (nndiary-reminders, nndiary-get-new-mail):
* lisp/gnus/nnheader.el (nnheader-directory-files-is-safe):
* lisp/gnus/nnir.el (nnir-search-history)
(nnir-imap-search-other, nnir-artlist-length)
(nnir-artlist-article, nnir-artitem-group, nnir-artitem-number)
(nnir-artitem-rsv, nnir-article-group, nnir-article-number)
(nnir-article-rsv, nnir-article-ids, nnir-categorize)
(nnir-retrieve-headers-override-function)
(nnir-imap-default-search-key, nnir-hyrex-additional-switches)
(gnus-group-make-nnir-group, nnir-run-namazu, nnir-read-parms)
(nnir-read-parm, nnir-read-server-parm, nnir-search-thread):
* lisp/gnus/nnmairix.el (nnmairix-default-group)
(nnmairix-propagate-marks):
* lisp/gnus/smime.el (smime-keys, smime-crl-check)
(smime-verify-buffer, smime-noverify-buffer):
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url):
* lisp/gnus/spam.el (spam-spamassassin-positive-spam-flag-header)
(spam-spamassassin-spam-status-header, spam-sa-learn-rebuild)
(spam-classifications, spam-check-stat, spam-spamassassin-score):
* lisp/help.el (describe-minor-mode-from-symbol):
* lisp/hippie-exp.el (hippie-expand-ignore-buffers):
* lisp/htmlfontify.el (hfy-optimizations, hfy-face-resolve-face)
(hfy-begin-span):
* lisp/ibuf-ext.el (ibuffer-update-saved-filters-format)
(ibuffer-saved-filters, ibuffer-old-saved-filters-warning)
(ibuffer-filtering-qualifiers, ibuffer-repair-saved-filters)
(eval, ibuffer-unary-operand, file-extension, directory):
* lisp/image-dired.el (image-dired-cmd-pngcrush-options):
* lisp/image-mode.el (image-toggle-display):
* lisp/international/ccl.el (ccl-compile-read-multibyte-character)
(ccl-compile-write-multibyte-character):
* lisp/international/kkc.el (kkc-save-init-file):
* lisp/international/latin1-disp.el (latin1-display):
* lisp/international/ogonek.el (ogonek-name-encoding-alist)
(ogonek-information, ogonek-lookup-encoding)
(ogonek-deprefixify-region):
* lisp/isearch.el (isearch-filter-predicate)
(isearch--momentary-message):
* lisp/jsonrpc.el (jsonrpc-connection-send)
(jsonrpc-process-connection, jsonrpc-shutdown)
(jsonrpc--async-request-1):
* lisp/language/tibet-util.el (tibetan-char-p):
* lisp/mail/feedmail.el (feedmail-queue-use-send-time-for-date)
(feedmail-last-chance-hook, feedmail-before-fcc-hook)
(feedmail-send-it-immediately-wrapper, feedmail-find-eoh):
* lisp/mail/hashcash.el (hashcash-generate-payment)
(hashcash-generate-payment-async, hashcash-insert-payment)
(hashcash-verify-payment):
* lisp/mail/rmail.el (rmail-movemail-variant-in-use)
(rmail-get-attr-value):
* lisp/mail/rmailmm.el (rmail-mime-prefer-html, rmail-mime):
* lisp/mail/rmailsum.el (rmail-summary-show-message):
* lisp/mail/supercite.el (sc-raw-mode-toggle):
* lisp/man.el (Man-start-calling):
* lisp/mh-e/mh-acros.el (mh-do-at-event-location)
(mh-iterate-on-messages-in-region, mh-iterate-on-range):
* lisp/mh-e/mh-alias.el (mh-alias-system-aliases)
(mh-alias-reload, mh-alias-ali)
(mh-alias-canonicalize-suggestion, mh-alias-add-alias-to-file)
(mh-alias-add-alias):
* lisp/mouse.el (mouse-save-then-kill):
* lisp/net/browse-url.el (browse-url-default-macosx-browser):
* lisp/net/eudc.el (eudc-set, eudc-variable-protocol-value)
(eudc-variable-server-value, eudc-update-variable)
(eudc-expand-inline):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
* lisp/net/eudcb-ldap.el (eudc-ldap-get-field-list):
* lisp/net/pop3.el (pop3-list):
* lisp/net/soap-client.el (soap-namespace-put)
(soap-xs-parse-sequence, soap-parse-envelope):
* lisp/net/soap-inspect.el (soap-inspect-xs-complex-type):
* lisp/nxml/rng-xsd.el (rng-xsd-date-to-days):
* lisp/org/ob-C.el (org-babel-prep-session:C)
(org-babel-load-session:C):
* lisp/org/ob-J.el (org-babel-execute:J):
* lisp/org/ob-asymptote.el (org-babel-prep-session:asymptote):
* lisp/org/ob-awk.el (org-babel-execute:awk):
* lisp/org/ob-core.el (org-babel-process-file-name):
* lisp/org/ob-ebnf.el (org-babel-execute:ebnf):
* lisp/org/ob-forth.el (org-babel-execute:forth):
* lisp/org/ob-fortran.el (org-babel-execute:fortran)
(org-babel-prep-session:fortran, org-babel-load-session:fortran):
* lisp/org/ob-groovy.el (org-babel-execute:groovy):
* lisp/org/ob-io.el (org-babel-execute:io):
* lisp/org/ob-js.el (org-babel-execute:js):
* lisp/org/ob-lilypond.el (org-babel-default-header-args:lilypond)
(org-babel-lilypond-compile-post-tangle)
(org-babel-lilypond-display-pdf-post-tangle)
(org-babel-lilypond-tangle)
(org-babel-lilypond-execute-tangled-ly)
(org-babel-lilypond-compile-lilyfile)
(org-babel-lilypond-check-for-compile-error)
(org-babel-lilypond-process-compile-error)
(org-babel-lilypond-mark-error-line)
(org-babel-lilypond-parse-error-line)
(org-babel-lilypond-attempt-to-open-pdf)
(org-babel-lilypond-attempt-to-play-midi)
(org-babel-lilypond-switch-extension)
(org-babel-lilypond-set-header-args):
* lisp/org/ob-lua.el (org-babel-prep-session:lua):
* lisp/org/ob-picolisp.el (org-babel-execute:picolisp):
* lisp/org/ob-processing.el (org-babel-prep-session:processing):
* lisp/org/ob-python.el (org-babel-prep-session:python):
* lisp/org/ob-scheme.el (org-babel-scheme-capture-current-message)
(org-babel-scheme-execute-with-geiser, org-babel-execute:scheme):
* lisp/org/ob-shen.el (org-babel-execute:shen):
* lisp/org/org-agenda.el (org-agenda-entry-types)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-time-grid, org-agenda-sorting-strategy)
(org-agenda-filter-by-category, org-agenda-forward-block):
* lisp/org/org-colview.el (org-columns--overlay-text):
* lisp/org/org-faces.el (org-verbatim, org-cycle-level-faces):
* lisp/org/org-indent.el (org-indent-set-line-properties):
* lisp/org/org-macs.el (org-get-limited-outline-regexp):
* lisp/org/org-mobile.el (org-mobile-files):
* lisp/org/org.el (org-use-fast-todo-selection)
(org-extend-today-until, org-use-property-inheritance)
(org-refresh-effort-properties, org-open-at-point-global)
(org-track-ordered-property-with-tag, org-shiftright):
* lisp/org/ox-html.el (org-html-checkbox-type):
* lisp/org/ox-man.el (org-man-source-highlight)
(org-man-verse-block):
* lisp/org/ox-publish.el (org-publish-sitemap-default):
* lisp/outline.el (outline-head-from-level):
* lisp/progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-calc-command-indent, dcl-indent-to):
* lisp/progmodes/flymake.el (flymake-make-diagnostic)
(flymake--overlays, flymake-diagnostic-functions)
(flymake-diagnostic-types-alist, flymake--backend-state)
(flymake-is-running, flymake--collect, flymake-mode):
* lisp/progmodes/gdb-mi.el (gdb-threads-list, gdb, gdb-non-stop)
(gdb-buffers, gdb-gud-context-call, gdb-jsonify-buffer):
* lisp/progmodes/grep.el (grep-error-screen-columns):
* lisp/progmodes/gud.el (gud-prev-expr):
* lisp/progmodes/ps-mode.el (ps-mode, ps-mode-target-column)
(ps-run-goto-error):
* lisp/progmodes/python.el (python-eldoc-get-doc)
(python-eldoc-function-timeout-permanent, python-eldoc-function):
* lisp/shadowfile.el (shadow-make-group):
* lisp/speedbar.el (speedbar-obj-do-check):
* lisp/textmodes/flyspell.el (flyspell-auto-correct-previous-hook):
* lisp/textmodes/reftex-cite.el (reftex-bib-or-thebib):
* lisp/textmodes/reftex-index.el (reftex-index-goto-entry)
(reftex-index-kill, reftex-index-undo):
* lisp/textmodes/reftex-parse.el (reftex-context-substring):
* lisp/textmodes/reftex.el (reftex-TeX-master-file):
* lisp/textmodes/rst.el (rst-next-hdr, rst-toc)
(rst-uncomment-region, rst-font-lock-extend-region-internal):
* lisp/thumbs.el (thumbs-mode):
* lisp/vc/ediff-util.el (ediff-restore-diff):
* lisp/vc/pcvs-defs.el (cvs-cvsroot, cvs-force-dir-tag):
* lisp/vc/vc-hg.el (vc-hg--ignore-patterns-valid-p):
* lisp/wid-edit.el (widget-field-value-set, string):
* lisp/x-dnd.el (x-dnd-version-from-flags)
(x-dnd-more-than-3-from-flags): Assorted docfixes.
2019-09-20 22:27:53 +00:00
|
|
|
|
\(A BEGIN is wrapped around the region: (BEGIN <region>).)"
|
1991-05-13 21:21:58 +00:00
|
|
|
|
(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\"."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'string)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
|
|
|
|
|
(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\"."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'string)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
|
|
|
|
|
(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")))
|
2020-09-06 21:44:09 +00:00
|
|
|
|
(read-string (format-prompt "%s procedure" current action)
|
|
|
|
|
nil nil (and current (symbol-name current))))
|
2005-08-06 07:37:45 +00:00
|
|
|
|
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\"."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'string)
|
2005-08-06 07:37:45 +00:00
|
|
|
|
|
|
|
|
|
(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))
|
2021-12-28 22:27:41 +00:00
|
|
|
|
(pop-to-buffer scheme-buffer display-comint-buffer-action)
|
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."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type '(repeat function))
|
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."
|
Replace "(default %s)" with 'format-prompt'
* lisp/cmuscheme.el (scheme-load-file, scheme-compile-file):
* lisp/comint.el (comint-get-source):
* lisp/emulation/viper-cmd.el (viper-quote-region, viper-kill-buffer)
(viper-query-replace, viper-read-string-with-history):
* lisp/eshell/esh-mode.el (eshell-find-tag):
* lisp/gnus/gnus-sum.el (gnus-articles-to-read)
(gnus-summary-search-article-forward)
(gnus-summary-search-article-backward):
* lisp/international/mule-cmds.el (set-input-method, toggle-input-method)
(describe-input-method, set-language-environment)
(describe-language-environment):
* lisp/mh-e/mh-gnus.el (mh-mml-minibuffer-read-disposition):
* lisp/mh-e/mh-letter.el (mh-insert-letter):
* lisp/mh-e/mh-mime.el (mh-display-with-external-viewer)
(mh-mime-save-parts, mh-mh-forward-message)
(mh-mml-query-cryptographic-method, mh-minibuffer-read-type):
* lisp/mh-e/mh-seq.el (mh-read-seq, mh-read-range):
* lisp/mh-e/mh-utils.el (mh-prompt-for-folder):
* lisp/progmodes/etags.el (find-tag-tag):
(find-tag-noselect, find-tag, find-tag-other-window)
(find-tag-other-frame, find-tag-regexp):
* lisp/progmodes/idlwave.el (idlwave-find-module):
* lisp/progmodes/inf-lisp.el (lisp-load-file, lisp-compile-file):
* lisp/progmodes/tcl.el (tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/xref.el (xref--read-identifier):
(xref-find-definitions, xref-find-definitions-other-window)
(xref-find-definitions-other-frame, xref-find-references):
* lisp/ses.el (ses-read-printer):
(ses-read-cell-printer, ses-read-column-printer)
(ses-read-default-printer, ses-define-local-printer):
* lisp/subr.el (read-number):
* lisp/term.el (term-get-source):
* src/minibuf.c (read-buffer): Remove prompt suffix and
use 'format-prompt'.
* lisp/minibuffer.el (format-prompt): Ignore DEFAULT empty strings
(bug#47286).
2021-03-24 09:31:31 +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."
|
Replace "(default %s)" with 'format-prompt'
* lisp/cmuscheme.el (scheme-load-file, scheme-compile-file):
* lisp/comint.el (comint-get-source):
* lisp/emulation/viper-cmd.el (viper-quote-region, viper-kill-buffer)
(viper-query-replace, viper-read-string-with-history):
* lisp/eshell/esh-mode.el (eshell-find-tag):
* lisp/gnus/gnus-sum.el (gnus-articles-to-read)
(gnus-summary-search-article-forward)
(gnus-summary-search-article-backward):
* lisp/international/mule-cmds.el (set-input-method, toggle-input-method)
(describe-input-method, set-language-environment)
(describe-language-environment):
* lisp/mh-e/mh-gnus.el (mh-mml-minibuffer-read-disposition):
* lisp/mh-e/mh-letter.el (mh-insert-letter):
* lisp/mh-e/mh-mime.el (mh-display-with-external-viewer)
(mh-mime-save-parts, mh-mh-forward-message)
(mh-mml-query-cryptographic-method, mh-minibuffer-read-type):
* lisp/mh-e/mh-seq.el (mh-read-seq, mh-read-range):
* lisp/mh-e/mh-utils.el (mh-prompt-for-folder):
* lisp/progmodes/etags.el (find-tag-tag):
(find-tag-noselect, find-tag, find-tag-other-window)
(find-tag-other-frame, find-tag-regexp):
* lisp/progmodes/idlwave.el (idlwave-find-module):
* lisp/progmodes/inf-lisp.el (lisp-load-file, lisp-compile-file):
* lisp/progmodes/tcl.el (tcl-load-file, tcl-restart-with-file):
* lisp/progmodes/xref.el (xref--read-identifier):
(xref-find-definitions, xref-find-definitions-other-window)
(xref-find-definitions-other-frame, xref-find-references):
* lisp/ses.el (ses-read-printer):
(ses-read-cell-printer, ses-read-column-printer)
(ses-read-default-printer, ses-define-local-printer):
* lisp/subr.el (read-number):
* lisp/term.el (term-get-source):
* src/minibuf.c (read-buffer): Remove prompt suffix and
use 'format-prompt'.
* lisp/minibuffer.el (format-prompt): Ignore DEFAULT empty strings
(bug#47286).
2021-03-24 09:31:31 +00:00
|
|
|
|
(interactive (comint-get-source "Compile Scheme file"
|
1991-05-13 21:21:58 +00:00
|
|
|
|
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."
|
2021-04-09 14:12:35 +00:00
|
|
|
|
:type 'hook)
|
2020-01-17 07:06:04 +00:00
|
|
|
|
(make-obsolete-variable 'cmuscheme-load-hook
|
|
|
|
|
"use `with-eval-after-load' instead." "28.1")
|
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
|