From 84cddab183693ca55f85d966c51f84753c39482a Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Sun, 21 Jun 1998 10:03:33 +0000
Subject: [PATCH] After renaming the PCL package to OLD-PCL, move the 'class
 symbol back to the PCL package so that the respective debug variable has a
 valid package name.

---
 tools/pclcom.lisp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/pclcom.lisp b/tools/pclcom.lisp
index 062efb676..ad70754a1 100644
--- a/tools/pclcom.lisp
+++ b/tools/pclcom.lisp
@@ -43,7 +43,10 @@
   (let ((class 'pcl::class))
     (rename-package "PCL" "OLD-PCL")
     (make-package "PCL")
-    (shadowing-import class "PCL")))
+    (shadowing-import class "PCL")
+    ;; Move class back to the PCL package so that the respective debug
+    ;; variable has a valid package name.
+    (kernel:%set-symbol-package class (find-package "PCL"))))
 
 (when (find-package  "SLOT-ACCESSOR-NAME")
   (rename-package "SLOT-ACCESSOR-NAME" "OLD-SLOT-ACCESSOR-NAME"))
-- 
GitLab