annotate lisp/ilisp/ilisp-pkg.lisp @ 4:b82b59fe008d r19-15b3

Import from CVS: tag r19-15b3
author cvs
date Mon, 13 Aug 2007 08:46:56 +0200
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; -*- Mode: Lisp -*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;;; ilisp-pkg.lisp --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;;; This file is part of ILISP.
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
6 ;;; Version: 5.8
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;;; 1993, 1994 Ivan Vasquez
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
10 ;;; 1994, 1995, 1996 Marco Antoniotti and Rick Busdiecker
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
11 ;;; 1996 Marco Antoniotti and Rick Campbell
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;; Other authors' names for which this Copyright notice also holds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;;; may appear later in this file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;;
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
16 ;;; Send mail to 'ilisp-request@naggum.no' to be included in the
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
17 ;;; ILISP mailing list. 'ilisp@naggum.no' is the general ILISP
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;;; mailing list were bugs and improvements are discussed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;; ILISP is freely redistributable under the terms found in the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;; COPYING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; CLtL2 defpackage definition for ILISP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; Common Lisp initializations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;; Author: Marco Antoniotti, marcoxa@cs.nyu.edu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;;;----------------------------------------------------------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;; Prologue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #+(or allegro-v4.0 allegro-v4.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (eval-when (compile load eval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (setq excl:*cltl1-in-package-compatibility-p* t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;;----------------------------------------------------------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;; Definitions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; ILISP package --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
44 ;;;
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
45 ;;; GCL 2.2 doesn't have defpackage (yet) so we need to put the export
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
46 ;;; here. (toy@rtp.ericsson.se)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
47 ;;;
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
48 ;;; Please note that while the comment and the fix posted by Richard
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
49 ;;; Toy are correct, they are deprecated by at least one of the ILISP
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
50 ;;; maintainers. :) By removing the 'nil' in the following #+, you
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
51 ;;; will fix the problem but will not do a good service to the CL
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
52 ;;; community. The right thing to do is to install DEFPACKAGE in your
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
53 ;;; GCL and to write the GCL maintainers and to ask them to
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
54 ;;; incorporate DEFPACKAGE in their standard builds.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
55 ;;; Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19960715
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
56 ;;;
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
57
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
58 #-(and nil gcl)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (defpackage "ILISP" (:use "LISP" #+:CMU "CONDITIONS")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; The following symbols should properly 'shadow' the inherited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; ones.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (:export "ILISP-ERRORS"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 "ILISP-SAVE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 "ILISP-RESTORE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 "ILISP-SYMBOL-NAME"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 "ILISP-FIND-SYMBOL"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 "ILISP-FIND-PACKAGE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 "ILISP-EVAL"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 "ILISP-COMPILE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 "ILISP-DESCRIBE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 "ILISP-INSPECT"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 "ILISP-ARGLIST"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 "ILISP-DOCUMENTATION"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "ILISP-MACROEXPAND"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 "ILISP-MACROEXPAND-1"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 "ILISP-TRACE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 "ILISP-UNTRACE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "ILISP-COMPILE-FILE"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 "ILISP-CASIFY"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "ILISP-MATCHING-SYMBOLS"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 "ILISP-CALLERS"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 "ILISP-SOURCE-FILES")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;;; ILISP --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;;; end of file -- ilisp-pkg.lisp --