r4272: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 04:03:44 +0000 (04:03 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 04:03:44 +0000 (04:03 +0000)
debian/changelog
mop.lisp
package.lisp

index 75ff1843fdc9d3d352bf062442ca48bba25f8dea..67784a961e721ffb2465182e1e72dbb64af9afde 100644 (file)
@@ -1,3 +1,10 @@
+cl-hyperobject (2.6.0-1) unstable; urgency=low
+
+  * Add work-around in finalize-subobjects for scl/sbcl/cmucl.
+  Requires new exported function: process-queued-definitions
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 28 Mar 2003 20:58:01 -0700
+
 cl-hyperobject (2.5.3-1) unstable; urgency=low
 
   * New upstream for SBCL 0.8pre MOP changes
index 54f685979f77a2681d69c6766caf1ee29daa3bb1..b9c8116d990d593669c62ca5cada1e7b5a44fe1b 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.17 2002/12/26 23:18:16 kevin Exp $
+;;;; $Id: mop.lisp,v 1.18 2003/03/29 04:00:37 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))))
index e7b92835bce51edd5f406d373e8c94308fda92c0..42e51efbb47df3937d2066f910384d23340af338 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: package.lisp,v 1.33 2003/03/25 16:04:18 kevin Exp $
+;;;; $Id: package.lisp,v 1.34 2003/03/29 04:00:37 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;; *************************************************************************
@@ -35,6 +35,7 @@
    #:load-all-subobjects
    #:view
    #:fmt-comma-integer
+   #:processed-queued-definitions
    ))
 
 (defpackage #:hyperobject-user