X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fobjects.cl;h=c71aa48598f914c0e8c81c88a045f23803cc1ddb;hb=d3e6bccc2b151fb21563d5adb2cdef6ba77cb320;hp=66d57cba64729afca7ba14b0dff6689409651995;hpb=98f470fb43c23c6bd19c3c9d36c228acafc7aec5;p=uffi.git diff --git a/src/objects.cl b/src/objects.cl index 66d57cb..c71aa48 100644 --- a/src/objects.cl +++ b/src/objects.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: objects.cl,v 1.17 2002/04/06 19:53:08 kevin Exp $ +;;;; $Id: objects.cl,v 1.18 2002/06/27 03:42:40 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -27,14 +27,14 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+cmu `(alien:make-alien ,(convert-from-uffi-type (eval type) :allocation)) #+lispworks - `(fli:allocate-foreign-object :type ,(convert-from-uffi-type type :allocate)) + `(fli:allocate-foreign-object :type ',(convert-from-uffi-type type :allocate)) #+allegro `(ff:allocate-fobject ,(convert-from-uffi-type type :allocate) :c)) (progn #+cmu `(alien:make-alien ,(convert-from-uffi-type (eval type) :allocation) ,size) #+lispworks - `(fli:allocate-foreign-object :type ,(convert-from-uffi-type type :allocate) :nelems ,size) + `(fli:allocate-foreign-object :type ',(convert-from-uffi-type type :allocate) :nelems ,size) #+allegro `(ff:allocate-fobject '(:array ,(convert-from-uffi-type (eval type) :allocate) ,(eval size)) :c) )