home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / lisp / ilisp / ilisp-pkg.lisp < prev    next >
Encoding:
Text File  |  1995-01-26  |  1.7 KB  |  71 lines

  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. (defpackage "ILISP" (:use "LISP" #+:CMU "CONDITIONS")
  44.   ;; The following symbols should properly 'shadow' the inherited
  45.   ;; ones.
  46.   (:export "ILISP-ERRORS"
  47.        "ILISP-SAVE"
  48.        "ILISP-RESTORE"
  49.        "ILISP-SYMBOL-NAME"
  50.        "ILISP-FIND-SYMBOL"
  51.        "ILISP-FIND-PACKAGE"
  52.        "ILISP-EVAL"
  53.        "ILISP-COMPILE"
  54.        "ILISP-DESCRIBE"
  55.        "ILISP-INSPECT"
  56.        "ILISP-ARGLIST"
  57.        "ILISP-DOCUMENTATION"
  58.        "ILISP-MACROEXPAND"
  59.        "ILISP-MACROEXPAND-1"
  60.        "ILISP-TRACE"
  61.        "ILISP-UNTRACE"
  62.        "ILISP-COMPILE-FILE"
  63.        "ILISP-CASIFY"
  64.        "ILISP-MATCHING-SYMBOLS"
  65.        "ILISP-CALLERS"
  66.        "ILISP-SOURCE-FILES")
  67.   )
  68. ;;; ILISP --
  69.  
  70. ;;; end of file -- ilisp-pkg.lisp --
  71.