From 5d49d36ab2ac7266ace2f053cea0fba7be84edb9 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Wed, 27 May 1998 03:32:59 +0000
Subject: [PATCH] Ensure that 'pcl::class is shadowed as it is used in ir1tran.

---
 code/exports.lisp | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/code/exports.lisp b/code/exports.lisp
index 1effa826f..c5cfb3e8e 100644
--- a/code/exports.lisp
+++ b/code/exports.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.154 1998/05/09 22:13:42 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.155 1998/05/27 03:32:59 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -13,8 +13,11 @@
 ;;;
 
 (in-package "LISP")
-(unless (find-package "PCL")
-  (make-package "PCL"))
+
+(if (find-package "PCL")
+    (rename-package "PCL" "PCL" 'nil)
+    (make-package "PCL" :nicknames 'nil :use nil))
+(shadow 'class "PCL")
 
 (if (find-package "C-CALL")
     (rename-package "C-CALL" "C-CALL" 'nil)
-- 
GitLab