r4306: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 1 Apr 2003 16:56:46 +0000 (16:56 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 1 Apr 2003 16:56:46 +0000 (16:56 +0000)
debian/changelog
mop.lisp

index 662a12a7af869a5817a3817838c993c2a0336aaf..848a10969df397914b9be3a6dbb432137190dd8e 100644 (file)
@@ -1,3 +1,9 @@
+cl-hyperobject (2.5.6-1) unstable; urgency=low
+
+  * Have lispworks use add-method
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue,  1 Apr 2003 09:56:27 -0700
+
 cl-hyperobject (2.5.5-1) unstable; urgency=low
 
   * Simplify shadowing-import for allegro,lispworks,sbcl
index b443aa0930057dfe9c3da7f172ffd6479bb5960b..bbd6604adfe6a7356a5d050be84d1645d5c5c34c 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.35 2003/03/31 14:15:07 kevin Exp $
+;;;; $Id: mop.lisp,v 1.36 2003/04/01 16:56:46 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)
+#+lispworks
+(defun intern-eql-specializer (slot)
+  `(eql ,slot))
+
+#+(or sbcl scl cmu lispworks)
 (defun ensure-lazy-reader (class-name slot-name reader &rest reader-keys)
   (let ((keys nil)
        (gf (ensure-generic-function 'slot-unbound)))
                                                           nil
                                                           (cdr subobj-def)))))
            (unless (eq (lookup subobject) t)
-             #-(or sbcl cmu scl)
+             #-(or sbcl cmu scl lispworks)
              (eval
               `(hyperobject::def-lazy-reader ,(name-class subobject)
                 ,(name-slot subobject) ,(lookup subobject)
                 ,@(lookup-keys subobject)))
-             #+(or sbcl cmu scl)
+             #+(or sbcl cmu scl lispworks)
              (apply #'ensure-lazy-reader 
                     (name-class subobject) (name-slot subobject) (lookup subobject) (lookup-keys subobject))
              )