chiark
/
gitweb
/
~mdw
/
lisp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
1dc0d27
)
mop: Don't pass filter functions the target object.
author
Mark Wooding
<mdw@distorted.org.uk>
Sat, 29 Apr 2006 21:22:45 +0000
(22:22 +0100)
committer
Mark 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
patch
|
blob
|
blame
|
history
diff --git
a/mdw-mop.lisp
b/mdw-mop.lisp
index e8946e8c8498b73dabf20855a7831fd1b8f569e8..dee8ca45b65f7c5f72099adf20fee756d640252d 100644
(file)
--- a/
mdw-mop.lisp
+++ b/
mdw-mop.lisp
@@
-172,7
+172,7
@@
(defmethod (setf slot-value-using-class)
(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))
;;;--------------------------------------------------------------------------