diff --git a/pcl/defs.lisp b/pcl/defs.lisp index e738353b8c4e5fa48f1f26441d65ef4a1576e1e9..80394262f79f4b348694eff8c172883659e8c30a 100644 --- a/pcl/defs.lisp +++ b/pcl/defs.lisp @@ -1,4 +1,4 @@ -;;;-*-Mode:LISP; Package:(PCL LISP 1000); Base:10; Syntax:Common-lisp -*- +;;;-*-Mode:LISP; Package:PCL -*- ;;; ;;; ************************************************************************* ;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation. @@ -192,7 +192,6 @@ ;; skeleton class will be replaced at load-time with the correct object. ;; Earlier revisions (<= 1.17) of this function were essentially NOOPs. (declare (ignorable name)) - #+nil ;; This is causing problems with native compile of defcombin.lisp (when (and (eq *boot-state* 'complete) (null (lisp:find-class name nil))) (setf (lisp:find-class name) diff --git a/pcl/low.lisp b/pcl/low.lisp index 077ba46ab4e2b9d4ffd7b3efc9e6b7e79502281d..4259556433063b4dfc724cfdd5be4c0df5ab4764 100644 --- a/pcl/low.lisp +++ b/pcl/low.lisp @@ -26,7 +26,7 @@ ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.14 2001/04/17 17:30:14 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.15 2001/09/22 13:57:42 pw Exp $") ;;; ;;; This file contains optimized low-level constructs for PCL. @@ -332,6 +332,9 @@ the compiler as completely as possible. Currently this means that (and (symbolp type) (let ((class (lisp:find-class type nil))) (and class + ;; class may not be complete if created by + ;; inform-type-system-aboutd-std-class + (kernel:class-layout class) (typep (kernel:layout-info (kernel:class-layout class)) 'kernel:defstruct-description)))))