From: Kevin M. Rosenberg Date: Sat, 29 Mar 2003 04:20:19 +0000 (+0000) Subject: r4275: Auto commit for Debian build X-Git-Tag: debian-2.11.0-2~192 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=ae806c523aa7162f356b95ba8826e393ab55e420 r4275: Auto commit for Debian build --- diff --git a/mop.lisp b/mop.lisp index 0208286..49dd87d 100644 --- 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 ;;;; @@ -286,9 +286,10 @@ (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" @@ -307,7 +308,10 @@ (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)