0
|
1 ;;; -*- Mode: Lisp -*-
|
|
2
|
|
3 ;;; ilisp-pkg.lisp --
|
|
4
|
|
5 ;;; This file is part of ILISP.
|
|
6 ;;; Version: 5.7
|
|
7 ;;;
|
|
8 ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
|
|
9 ;;; 1993, 1994 Ivan Vasquez
|
|
10 ;;; 1994, 1995 Marco Antoniotti and Rick Busdiecker
|
|
11 ;;;
|
|
12 ;;; Other authors' names for which this Copyright notice also holds
|
|
13 ;;; may appear later in this file.
|
|
14 ;;;
|
|
15 ;;; Send mail to 'ilisp-request@lehman.com' to be included in the
|
|
16 ;;; ILISP mailing list. 'ilisp@lehman.com' is the general ILISP
|
|
17 ;;; mailing list were bugs and improvements are discussed.
|
|
18 ;;;
|
|
19 ;;; ILISP is freely redistributable under the terms found in the file
|
|
20 ;;; COPYING.
|
|
21
|
|
22
|
|
23
|
|
24 ;;; CLtL2 defpackage definition for ILISP.
|
|
25 ;;;
|
|
26 ;;; Common Lisp initializations
|
|
27 ;;;
|
|
28 ;;; Author: Marco Antoniotti, marcoxa@cs.nyu.edu
|
|
29
|
|
30 ;;;----------------------------------------------------------------------------
|
|
31 ;;; Prologue
|
|
32
|
|
33 #+(or allegro-v4.0 allegro-v4.1)
|
|
34 (eval-when (compile load eval)
|
|
35 (setq excl:*cltl1-in-package-compatibility-p* t))
|
|
36
|
|
37
|
|
38 ;;;----------------------------------------------------------------------------
|
|
39 ;;; Definitions
|
|
40
|
|
41 ;;; ILISP package --
|
|
42
|
|
43 #-gcl
|
|
44 (defpackage "ILISP" (:use "LISP" #+:CMU "CONDITIONS")
|
|
45 ;; The following symbols should properly 'shadow' the inherited
|
|
46 ;; ones.
|
|
47 (:export "ILISP-ERRORS"
|
|
48 "ILISP-SAVE"
|
|
49 "ILISP-RESTORE"
|
|
50 "ILISP-SYMBOL-NAME"
|
|
51 "ILISP-FIND-SYMBOL"
|
|
52 "ILISP-FIND-PACKAGE"
|
|
53 "ILISP-EVAL"
|
|
54 "ILISP-COMPILE"
|
|
55 "ILISP-DESCRIBE"
|
|
56 "ILISP-INSPECT"
|
|
57 "ILISP-ARGLIST"
|
|
58 "ILISP-DOCUMENTATION"
|
|
59 "ILISP-MACROEXPAND"
|
|
60 "ILISP-MACROEXPAND-1"
|
|
61 "ILISP-TRACE"
|
|
62 "ILISP-UNTRACE"
|
|
63 "ILISP-COMPILE-FILE"
|
|
64 "ILISP-CASIFY"
|
|
65 "ILISP-MATCHING-SYMBOLS"
|
|
66 "ILISP-CALLERS"
|
|
67 "ILISP-SOURCE-FILES")
|
|
68 )
|
|
69 ;;; ILISP --
|
|
70
|
|
71 ;;; end of file -- ilisp-pkg.lisp --
|