r4275: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 04:20:19 +0000 (04:20 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 04:20:19 +0000 (04:20 +0000)
mop.lisp

index 0208286c6d4142fbc0aa8a93f8d3814e1c18b46c..49dd87d50beadc3994b27f9921d4c97b64f0aa3e 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.19 2003/03/29 04:06:29 kevin Exp $
+;;;; $Id: mop.lisp,v 1.20 2003/03/29 04:20:19 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;;
 
 (defun process-queued-definitions ()
   #+(or sbcl scl cmu)
-  (dolist (def *queued-definitions*)
-    (eval def))
-  (setq *queued-definitions* nil))
+  (progn
+    (dolist (def *queued-definitions*)
+      (eval def))
+    (setq *queued-definitions* nil)))
 
 (defun finalize-subobjects (cl)
   "Process class subobjects slot"
                                                           (cdr subobj-def)))))
            (unless (eq (lookup subobject) t)
              #+(or sbcl scl cmu)
-             
+             (push `(def-lazy-reader ,(name-class subobject)
+                     ,(name-slot subobject) ,(lookup subobject)
+                     ,@(lookup-keys subobject))
+                   *queued-definitions*)             
              #-(or sbcl scl cmu)
              (eval `(def-lazy-reader ,(name-class subobject)
                         ,(name-slot subobject) ,(lookup subobject)