From 12e8e9ef86e6f60992c9d03284e419ab7c94c8a0 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 20 Jul 1993 15:35:16 +0000
Subject: [PATCH] Add a make-load-form for CLASS-CELL.

---
 code/class.lisp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/code/class.lisp b/code/class.lisp
index 28b9cda8a..c8ef579df 100644
--- a/code/class.lisp
+++ b/code/class.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/class.lisp,v 1.27 1993/07/17 00:52:03 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/class.lisp,v 1.28 1993/07/20 15:35:16 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -282,7 +282,11 @@
 ;;;    We use an indirection to allow forward referencing of class definitions
 ;;; with load-time resolution.
 ;;;
-(defstruct (class-cell (:constructor make-class-cell (name &optional class)))
+(defstruct (class-cell
+	    (:constructor make-class-cell (name &optional class))
+	    (:make-load-form-fun
+	     (lambda (cell)
+	       `(find-class-cell ',(class-cell-name cell)))))
   ;;
   ;; Name of class we expect to find.
   (name nil :type symbol :read-only t)
-- 
GitLab