From 1100b7d422fb4f832ae63585e02f022c7aea3c23 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Sun, 25 Apr 1999 12:46:28 +0000 Subject: [PATCH] Revision 1.12 for FIND-CLASS broke the PCL build process. This is a better fix (suggested by Douglas) in that FIND-CLASS-CELL as called from FIND-CLASS is not allowed to produce any side effects. This restores the build process and lets (find-class :x nil) => NIL as relied on by some codes. --- pcl/macros.lisp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pcl/macros.lisp b/pcl/macros.lisp index d5e9542e2..a8a7cf540 100644 --- a/pcl/macros.lisp +++ b/pcl/macros.lisp @@ -26,7 +26,7 @@ ;;; #+cmu (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/macros.lisp,v 1.12 1999/04/15 22:38:15 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/macros.lisp,v 1.13 1999/04/25 12:46:28 pw Exp $") ;;; ;;; Macros global variable definitions, and other random support stuff used ;;; by the rest of the system. @@ -447,10 +447,12 @@ (not (keywordp x)))) (defun find-class (symbol &optional (errorp t) environment) + "Returns the PCL class metaobject named by SYMBOL. An error of type + SIMPLE-ERROR is signaled if the class does not exist unless ERRORP + is NIL in which case NIL is returned. SYMBOL cannot be a keyword." (declare (ignore environment)) - (let ((cell (find-class-cell symbol (not errorp)))) - (when cell - (find-class-from-cell symbol cell errorp)))) + (find-class-from-cell + symbol (find-class-cell symbol t) errorp)) (defun find-class-predicate (symbol &optional (errorp t) environment) (declare (ignore environment)) -- GitLab