X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fobjects.lisp;h=8c6d2aca11f1c936b3d970438aed7057ef3561d3;hb=77378d36f07fe1f11893444217716b01628a329f;hp=6c7a745476fea1939bb2e1b7d957d44980a57438;hpb=dacb69575126d6c9aa60db0222bea8140cb1dc24;p=uffi.git diff --git a/src/objects.lisp b/src/objects.lisp index 6c7a745..8c6d2ac 100644 --- a/src/objects.lisp +++ b/src/objects.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: objects.lisp,v 1.6 2002/11/23 18:01:57 kevin Exp $ +;;;; $Id: objects.lisp,v 1.7 2002/12/02 13:21:43 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -108,8 +108,8 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+(or cmu scl) `(alien:deref ,ptr) #+sbcl `(sb-alien:deref ,ptr) #+lispworks `(fli:dereference ,ptr) - #+allegro `(ff:fslot-value-typed (convert-from-uffi-type ,type :deref) :c ,ptr) - #+mcl `(ccl:pref ,ptr (convert-from-uffi-type ,type :deref)) + #+allegro `(ff:fslot-value-typed (quote ,(convert-from-uffi-type type :deref)) :c ,ptr) + #+mcl `(ccl:pref ,ptr ,(convert-from-uffi-type type :deref)) ) #+mcl