From 872b36b41f2b2ba62b6c1acce15b53b5902c2ddf Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Tue, 12 Jan 1999 17:51:09 +0000
Subject: [PATCH] Modifies EXPAND-DEFCLASS to substitute pcl::standard-class
 for lisp:standard-class in the superclass list given to defclass. This is
 consistent with the treatment given the :metaclass option argument.

std-class.lisp is restored to its original state wiping out all traces
of bogus change introduced in revision 1.19.
---
 pcl/defclass.lisp  | 18 ++++++++++++------
 pcl/std-class.lisp |  6 +-----
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/pcl/defclass.lisp b/pcl/defclass.lisp
index 7deda0fde..d6d5126b6 100644
--- a/pcl/defclass.lisp
+++ b/pcl/defclass.lisp
@@ -26,7 +26,7 @@
 ;;;
 #+cmu
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/defclass.lisp,v 1.12 1998/12/20 04:30:18 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/defclass.lisp,v 1.13 1999/01/12 17:51:08 pw Exp $")
 ;;;
 
 (in-package :pcl)
@@ -142,18 +142,24 @@
 
 (defun expand-defclass (name supers slots options)
   (declare (special *defclass-times* *boot-state* *the-class-structure-class*))
-  (setq supers  (copy-tree supers)
+  (setq supers  (nsubstitute 'standard-class 'lisp:standard-class
+			     (copy-tree supers))
 	slots   (copy-tree slots)
 	options (copy-tree options))
   (let ((metaclass 'standard-class))
+    ;; TBD - ANSI compliant class and slot option checking.
     (dolist (option options)
       (if (not (listp option))
-          (error "~S is not a legal defclass option." option)
+          (error 'simple-program-error
+		 :format-control "~S is not a legal defclass option."
+		 :format-arguments (list option))
           (when (eq (car option) ':metaclass)
             (unless (legal-class-name-p (cadr option))
-              (error "The value of the :metaclass option (~S) is not a~%~
-                      legal class name."
-                     (cadr option)))
+              (error 'simple-program-error
+		     :format-control 
+		     "The value of the :metaclass option (~S) is not a~%~
+		      legal class name."
+		     :format-arguments (list (cadr option))))
 	    #-cmu17
             (setq metaclass (cadr option))
 	    #+cmu17
diff --git a/pcl/std-class.lisp b/pcl/std-class.lisp
index 860a06a0d..bf1182208 100644
--- a/pcl/std-class.lisp
+++ b/pcl/std-class.lisp
@@ -26,7 +26,7 @@
 ;;;
 #+cmu
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.20 1999/01/06 14:30:07 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.21 1999/01/12 17:51:09 pw Exp $")
 ;;;
 
 (in-package :pcl)
@@ -379,10 +379,6 @@
 	     (cond ((classp s) s)
 		   ((not (legal-class-name-p s))
 		    (error "~S is not a class or a legal class name." s))
-	#||notyet   #+cmu17
-		   ((eq s 'lisp:standard-class) ; map from lisp to pcl
-		    *the-class-standard-class*)
-	 ||#
 		   (t
 		    (or (find-class s nil)
 			(setf (find-class s)
-- 
GitLab