4
|
1 ;;; -*-Mode: Emacs-Lisp-*-
|
|
2
|
|
3 ;;; ilisp-xls.el --
|
|
4
|
|
5 ;;; This file is part of ILISP.
|
|
6 ;;; Version: 5.8
|
|
7 ;;;
|
|
8 ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
|
|
9 ;;; 1993, 1994 Ivan Vasquez
|
|
10 ;;; 1994, 1995, 1996 Marco Antoniotti and Rick Busdiecker
|
|
11 ;;; 1996 Marco Antoniotti and Rick Campbell
|
|
12 ;;;
|
|
13 ;;; Other authors' names for which this Copyright notice also holds
|
|
14 ;;; may appear later in this file.
|
|
15 ;;;
|
|
16 ;;; Send mail to 'ilisp-request@naggum.no' to be included in the
|
|
17 ;;; ILISP mailing list. 'ilisp@naggum.no' is the general ILISP
|
|
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 ;;; ILISP Xlisp and Xlisp-Stat dialect definition
|
|
25 ;;;
|
|
26
|
|
27 ;;; Thanks to John Walker for supplying this file.
|
|
28
|
|
29
|
|
30 (defdialect xlisp "Xlisp" ilisp
|
|
31 (setq ilisp-load-command "(load \"%s\")"
|
|
32 ilisp-last-command "*")
|
|
33 )
|
|
34
|
|
35 (if (not xlisp-program) (setq xlisp-program "xlisp"))
|
|
36
|
|
37 ;;;%%Xlisp-Stat
|
|
38
|
|
39 (defdialect xlispstat "Xlisp-Stat" xlisp
|
|
40 (setq ilisp-binary-extension "fsl"
|
|
41 ;; ilisp-describe-command "(help %s)"))
|
|
42 ))
|
|
43
|
|
44 (if (not xlispstat-program) (setq xlispstat-program "xlispstat"))
|
|
45
|
|
46 ;;; endo of file -- ilisp-xls.el --
|