r4283: Auto commit for Debian build
[hyperobject.git] / mop.lisp
index b9c8116d990d593669c62ca5cada1e7b5a44fe1b..03cb099a3bc36fbe90dd8eacd8996b6e380dd1b1 100644 (file)
--- a/mop.lisp
+++ b/mop.lisp
@@ -11,7 +11,7 @@
 ;;;; in Text, HTML, and XML formats. This includes hyperlinking
 ;;;; capability and sub-objects.
 ;;;;
-;;;; $Id: mop.lisp,v 1.18 2003/03/29 04:00:37 kevin Exp $
+;;;; $Id: mop.lisp,v 1.26 2003/03/29 13:57:07 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;;
        (setf (slot-value ,the-instance ,the-slot-name)
           (,reader ,@keys)))))
 
-#+(or sbcl scl cmu)
-(defparameter *queued-definitions* nil)
-#+(or sbcl scl cmu)
-(defun process-queued-definitions ()
-  (dolist (def *queued-definitions*)
-    (eval def))
-  (setq *queued-definitions* nil))
-
 (defun finalize-subobjects (cl)
   "Process class subobjects slot"
   (setf (subobjects cl)
                                                           nil
                                                           (cdr subobj-def)))))
            (unless (eq (lookup subobject) t)
-             #+(or sbcl scl cmu)
-             
-             #-(or sbcl scl cmu)
-             (eval `(def-lazy-reader ,(name-class subobject)
-                        ,(name-slot subobject) ,(lookup subobject)
-                        ,@(lookup-keys subobject))))
+             (eval
+              `(hyperobject::def-lazy-reader ,(name-class subobject)
+                ,(name-slot subobject) ,(lookup subobject)
+                ,@(lookup-keys subobject))))
            (push subobject subobjects))))
       subobjects)))