summaryrefslogtreecommitdiff
path: root/Lisp/method-invocation.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-02-05 20:23:29 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-02-05 20:23:29 +0100
commit074be8bdfc44a29ae54497da0ee064117f5a1530 (patch)
tree16fc8215f5fa05a5eab711e25ce982a11753186e /Lisp/method-invocation.lisp
parent170159290c0c46685353cd3a54a968f203ddb795 (diff)
Add support for reading foreign slots.
darcs-hash:00abb78ca0134b8fa34830c9643986e046808c5e
Diffstat (limited to 'Lisp/method-invocation.lisp')
-rw-r--r--Lisp/method-invocation.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp
index 08e0dac..3170670 100644
--- a/Lisp/method-invocation.lisp
+++ b/Lisp/method-invocation.lisp
@@ -386,7 +386,8 @@ easier to use with __apply__.
(defun typespec->c-type (typespec)
(case (car typespec)
- ((:pointer struct union id objective-c-class exception array selector)
+ ((:pointer pointer struct union id objective-c-class exception array
+ selector)
:pointer)
((:string) :string)
(otherwise (car typespec))))