diff lisp/ilisp/ilisp-cl.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children b82b59fe008d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/ilisp/ilisp-cl.el	Mon Aug 13 08:45:50 2007 +0200
@@ -0,0 +1,141 @@
+;;; -*- Mode: Emacs-Lisp -*-
+
+;;; ilisp-cl.el --
+
+;;; This file is part of ILISP.
+;;; Version: 5.7
+;;;
+;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
+;;;               1993, 1994 Ivan Vasquez
+;;;               1994, 1995 Marco Antoniotti and Rick Busdiecker
+;;;
+;;; Other authors' names for which this Copyright notice also holds
+;;; may appear later in this file.
+;;;
+;;; Send mail to 'ilisp-request@lehman.com' to be included in the
+;;; ILISP mailing list. 'ilisp@lehman.com' is the general ILISP
+;;; mailing list were bugs and improvements are discussed.
+;;;
+;;; ILISP is freely redistributable under the terms found in the file
+;;; COPYING.
+
+
+;;;
+;;; ILISP Common Lisp dialect definition
+;;;
+
+
+;;;%%Common LISP
+
+(defvar ilisp-cl-ilisp-package-file "ilisp-pkg.lisp")
+
+(defvar ilisp-clisp-init-file "clisp.lisp")
+
+(defdialect clisp "Common LISP"
+  ilisp
+  (setq ilisp-load-or-send-command 
+	"(or (and (load \"%s\" :if-does-not-exist nil) t)
+             (and (load \"%s\" :if-does-not-exist nil) t))")
+
+  ;; The following line is an incredible kludge to bypass the behavior
+  ;; of ilisp-load-init and to stick the package file in front of
+  ;; everything.
+  ;; Check what ilisp-load-init does to understand why I am forced to
+  ;; do this.
+  ;; Marco Antoniotti 11/22/94
+  (ilisp-load-init 'ilisp-package-kludge ilisp-cl-ilisp-package-file)
+
+  (ilisp-load-init 'clisp ilisp-clisp-init-file)
+  (setq ilisp-package-regexp
+	"^[ \t]*(in-package[ \t\n]*"
+
+	ilisp-package-command
+	"(let ((*package* *package*)) %s (package-name *package*))"
+
+	ilisp-package-name-command
+	"(package-name *package*)"
+
+	ilisp-in-package-command
+	"(in-package \"%s\")"
+
+	ilisp-last-command
+	"*"
+
+	ilisp-save-command
+	"(progn (ILISP:ilisp-save) %s\n)"
+
+	ilisp-restore-command
+	"(ILISP:ilisp-restore)"
+
+	ilisp-block-command
+	"(progn %s\n)"
+
+	ilisp-eval-command
+	"(ILISP:ilisp-eval \"%s\" \"%s\" \"%s\")"
+
+	ilisp-defvar-regexp
+	"(defvar[ \t\n]")
+
+  (setq ilisp-defvar-command 
+	"(ILISP:ilisp-eval \"(let ((form '%s)) (progn (makunbound (second form)) (eval form)))\" \"%s\" \"%s\")")
+
+  (setq ilisp-compile-command
+	"(ILISP:ilisp-compile \"%s\" \"%s\" \"%s\")"
+
+	ilisp-describe-command
+	"(ILISP:ilisp-describe \"%s\" \"%s\")"
+
+	ilisp-inspect-command
+	"(ILISP:ilisp-inspect \"%s\" \"%s\")"
+
+	ilisp-arglist-command
+	"(ILISP:ilisp-arglist \"%s\" \"%s\")")
+
+  (setq ilisp-documentation-types
+	'(("function") ("variable")
+	  ("structure") ("type")
+	  ("setf") ("class")
+	  ("(qualifiers* (class ...))")))
+
+  (setq ilisp-documentation-command
+	"(ILISP:ilisp-documentation \"%s\" \"%s\" \"%s\")")
+
+  (setq ilisp-macroexpand-1-command 
+	"(ILISP:ilisp-macroexpand-1 \"%s\" \"%s\")")
+
+  (setq ilisp-macroexpand-command
+	"(ILISP:ilisp-macroexpand \"%s\" \"%s\")")
+
+  (setq ilisp-complete-command 
+	"(ILISP:ilisp-matching-symbols \"%s\" \"%s\" %s %s %s)")
+
+  (setq ilisp-locator 'lisp-locate-clisp)
+
+  (setq ilisp-source-types 
+	'(("function") ("macro") ("variable")
+	  ("structure") ("type")
+	  ("setf") ("class")
+	  ("(qualifiers* (class ...))")))
+
+  (setq ilisp-callers-command
+	"(ILISP:ilisp-callers \"%s\" \"%s\")"
+
+	ilisp-trace-command
+	"(ILISP:ilisp-trace \"%s\" \"%s\" \"%s\")"
+
+	ilisp-untrace-command
+	"(ILISP:ilisp-untrace \"%s\" \"%s\")")
+
+  (setq ilisp-directory-command
+	"(namestring *default-pathname-defaults*)"
+
+	ilisp-set-directory-command
+	"(setq *default-pathname-defaults* (parse-namestring \"%s\"))")
+
+  (setq ilisp-load-command
+	"(load \"%s\")")
+
+  (setq ilisp-compile-file-command 
+	"(ILISP:ilisp-compile-file \"%s\" \"%s\")"))
+
+;;; end of file -- ilisp-cl.el --