0.pre7.98:
[sbcl.git] / src / pcl / early-low.lisp
index 39d21d1..5d436da 100644 (file)
 ;;;; warranty about the software, its performance or its conformity to any
 ;;;; specification.
 
-(sb-int:file-comment
-  "$Header$")
-
 (in-package "SB-PCL")
+
+(/show "starting early-low.lisp")
 \f
 ;;; FIXME: The PCL package is internal and is used by code in potential
 ;;; bottlenecks. Access to it might be faster through #.(find-package "SB-PCL")
@@ -40,8 +39,8 @@
 ;;; could be made less viciously brittle when SB-FLUID.)
 ;;; (Or perhaps just define a macro
 ;;;   (DEFMACRO PKG (NAME)
-;;;     #!-SB-FLUID (FIND-PACKAGE NAME)
-;;;     #!+SB-FLUID `(FIND-PACKAGE ,NAME))
+;;;     #-SB-FLUID (FIND-PACKAGE NAME)
+;;;     #+SB-FLUID `(FIND-PACKAGE ,NAME))
 ;;; and use that to replace all three variables.)
 (defvar *pcl-package*               (find-package "SB-PCL"))
 (defvar *slot-accessor-name-package* (find-package "SB-SLOT-ACCESSOR-NAME"))
@@ -59,3 +58,5 @@
         (and class
              (typep (sb-kernel:layout-info (sb-kernel:class-layout class))
                     'sb-kernel:defstruct-description)))))
+\f
+(/show "finished with early-low.lisp")