mop: Don't pass filter functions the target object.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 29 Apr 2006 21:22:45 +0000 (22:22 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 30 Apr 2006 12:29:55 +0000 (13:29 +0100)
Firstly,  it's now what the docstring for `filtered-slot-class-mixin'
says, and it seems to be less useful.

mdw-mop.lisp

index e8946e8..dee8ca4 100644 (file)
      (class filtered-slot-class-mixin)
      (object standard-object)
      (slot filtered-effective-slot-definition))
-  (call-next-method (funcall (slot-definition-filter slot) object value)
+  (call-next-method (funcall (slot-definition-filter slot) value)
                    class object slot))
 
 ;;;--------------------------------------------------------------------------