0
|
1 ;;; -*- Mode: Emacs-Lisp -*-
|
|
2
|
|
3 ;;; ilisp-sch.el --
|
|
4
|
|
5 ;;; This file is part of ILISP.
|
4
|
6 ;;; Version: 5.8
|
0
|
7 ;;;
|
|
8 ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
|
|
9 ;;; 1993, 1994 Ivan Vasquez
|
4
|
10 ;;; 1994, 1995, 1996 Marco Antoniotti and Rick Busdiecker
|
|
11 ;;; 1996 Marco Antoniotti and Rick Campbell
|
0
|
12 ;;;
|
|
13 ;;; Other authors' names for which this Copyright notice also holds
|
|
14 ;;; may appear later in this file.
|
|
15 ;;;
|
4
|
16 ;;; Send mail to 'ilisp-request@naggum.no' to be included in the
|
|
17 ;;; ILISP mailing list. 'ilisp@naggum.no' is the general ILISP
|
0
|
18 ;;; mailing list were bugs and improvements are discussed.
|
|
19 ;;;
|
|
20 ;;; ILISP is freely redistributable under the terms found in the file
|
|
21 ;;; COPYING.
|
|
22
|
|
23
|
|
24
|
|
25 ;;; Scheme
|
|
26
|
|
27 (defdialect scheme "Scheme" ilisp
|
|
28 (setq ilisp-block-command "(begin \n%s)")
|
|
29 (setq ilisp-load-command "(load \"%s\")")
|
|
30 )
|
|
31
|
|
32 (if (not scheme-program) (setq scheme-program "scheme"))
|
|
33
|
|
34 ;;;Cscheme
|
|
35 ;;; This has a problem since interrupts cause things to crash
|
|
36 ;(defdialect cscheme "C Scheme"
|
|
37 ; scheme
|
|
38 ; (setq comint-prompt-regexp
|
|
39 ; "^[0-9]+ \\([\\]=]=>\\|Error->\\|Bkpt->\\|Debug->\\|Where->\\) ")
|
|
40 ; (setq ilisp-program "cscheme")
|
|
41 ; (setq ilisp-binary-extension "bin")
|
|
42 ; )
|
|
43
|
|
44
|
|
45 ;;; Oaklisp
|
|
46
|
|
47 (defdialect oaklisp "Oaklisp Scheme"
|
|
48 scheme
|
|
49 (setq comint-prompt-regexp ">+ ")
|
|
50 (setq comint-fix-error "(ret 0)")
|
|
51 (setq ilisp-last-command "*")
|
|
52 (setq ilisp-describe-command "(describe %s)"))
|
|
53
|
|
54
|
|
55 ;;; end of file -- ilisp-sch.el --
|