chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
5e48435
)
Removed incorrect comment/bug fix
author
espen
<espen>
Wed, 20 Jun 2007 13:34:53 +0000
(13:34 +0000)
committer
espen
<espen>
Wed, 20 Jun 2007 13:34:53 +0000
(13:34 +0000)
gffi/virtual-slots.lisp
patch
|
blob
|
blame
|
history
diff --git
a/gffi/virtual-slots.lisp
b/gffi/virtual-slots.lisp
index 6b39578372e838407e472d91451604798157d91a..a004608c4ec7eb9960ec026fc103b5ba9bbbe69a 100644
(file)
--- a/
gffi/virtual-slots.lisp
+++ b/
gffi/virtual-slots.lisp
@@
-20,7
+20,7
@@
;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-;; $Id: virtual-slots.lisp,v 1.
9 2007/06/15 12:23:39
espen Exp $
+;; $Id: virtual-slots.lisp,v 1.
10 2007/06/20 13:34:53
espen Exp $
(in-package "GFFI")
(in-package "GFFI")
@@
-205,10
+205,8
@@
(defmethod compute-slot-writer-function ((slotd effective-virtual-slot-definitio
#-sbcl setter
#+sbcl
(etypecase setter
#-sbcl setter
#+sbcl
(etypecase setter
- (symbol #'(lambda (object value) (funcall setter object value)))
- (list #'(lambda (object value)
- ;; Setter is a (setf ...) form and thus takes the
- ;; value as the first argument
+ (symbol #'(lambda (value object) (funcall setter value object)))
+ (list #'(lambda (value object)
(funcall setter value object)))
(function setter))))
(funcall setter value object)))
(function setter))))