X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=blobdiff_plain;f=mop.lisp;h=1bd40d7ea3f7645a4eedfee16eddce0f756c6dc5;hp=0a6f6f1da3fdd7fcc09d63e11f5745aa7e012818;hb=dc9f3ec2fc1537d7b3aa0a0444ae50af93a68541;hpb=927d5f069190f0911510fac96298dde23e265840 diff --git a/mop.lisp b/mop.lisp index 0a6f6f1..1bd40d7 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.78 2003/06/20 08:50:38 kevin Exp $ +;;;; $Id: mop.lisp,v 1.79 2003/06/24 08:32:32 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -149,7 +149,7 @@ (when (and ,required (null value)) (error "hyperobject class slot ~A must have a value" name)) (list name `',value)) - #+(or allegro sbcl cmu scl) + #+(or allegro sbcl cmu scl openmcl) (declare (ignore slot-name required)) ) @@ -390,7 +390,7 @@ SQL name" ':function (compile nil method-lambda) init-args-values))))) -#+(or allegro scl) +#+(or allegro scl openmcl) (progn ;; One entry for each class with lazy readers defined. The value is a plist mapping ;; slot-name to a lazy reader, each of which is a list of a function and slot-names. @@ -419,7 +419,7 @@ SQL name" (setf (getf (gethash (find-class class-name) *lazy-readers*) slot-name) nil)) - ) ;; #+(or allegro scl) + ) ;; #+(or allegro sc openmcll) (defun finalize-subobjects (cl) @@ -445,7 +445,7 @@ SQL name" `(hyperobject::def-lazy-reader ,(name-class subobject) ,(name-slot subobject) ,(lookup subobject) ,@(lookup-keys subobject))) - #+(or sbcl cmu lispworks allegro scl) + #+(or sbcl cmu lispworks allegro scl openmcl) (apply #'ensure-lazy-reader (name-class subobject) (name-slot subobject) (lookup subobject) (lookup-keys subobject)))