Initial Commit
[packages] / xemacs-packages / ilisp / ilisp-xls.el
1 ;;; -*-Mode: Emacs-Lisp-*-
2
3 ;;; ilisp-xls.el --
4 ;;; ILISP Xlisp and Xlisp-Stat dialect definition
5 ;;;
6 ;;; This file is part of ILISP.
7 ;;; Please refer to the file COPYING for copyrights and licensing
8 ;;; information.
9 ;;; Please refer to the file ACKNOWLEGDEMENTS for an (incomplete) list
10 ;;; of present and past contributors.
11 ;;;
12 ;;; $Id: ilisp-xls.el,v 1.3 2001-07-02 09:40:49 youngs Exp $
13
14 ;;; Thanks to John Walker for supplying this file.
15
16
17 (defdialect xlisp "Xlisp" ilisp
18   (setq ilisp-load-command "(load \"%s\")"
19         ilisp-last-command "*")
20   )
21
22 (if (not xlisp-program) (setq xlisp-program "xlisp"))
23
24 ;;;%%Xlisp-Stat
25
26 (defdialect xlispstat "Xlisp-Stat" xlisp
27   (setq ilisp-binary-extension "fsl"
28         ;; ilisp-describe-command "(help %s)"))
29         ))
30
31 (if (not xlispstat-program) (setq xlispstat-program "xlispstat"))
32
33 ;;; endo of file -- ilisp-xls.el --