X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fobjects.lisp;h=940c941cc42f6d09338c22f90b8bc0d9e45949e0;hb=3e1ab6ebfcf56e76edffaff284aca937e8152408;hp=f154990cef415047cc7aadb1cf46aed85b0d5961;hpb=8085d5edf101e4f8a00834fc45783ad37d694e42;p=uffi.git diff --git a/src/objects.lisp b/src/objects.lisp index f154990..940c941 100644 --- a/src/objects.lisp +++ b/src/objects.lisp @@ -128,25 +128,21 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated." #+mcl (defsetf deref-pointer deref-pointer-set) -#+lispworks (defmacro ensure-char-character (obj) + #+(or (and mcl (not openmcl))) obj + #+(or allegro cmu sbcl scl openmcl) `(code-char ,obj) + ;; lispworks varies whether deref'ing array vs. slot access of a char + #+lispworks `(if (characterp ,obj) ,obj (code-char ,obj))) - -#+(and mcl (not openmcl)) -(defmacro ensure-char-character (obj) - obj) - -#+(or allegro cmu sbcl scl openmcl) -(defmacro ensure-char-character (obj) - `(code-char ,obj)) -#+(or lispworks (and mcl (not openmcl))) (defmacro ensure-char-integer (obj) - `(char-code ,obj)) + #+(or (and mcl (not openmcl))) `(char-code ,obj) + #+(or allegro cmu sbcl scl openmcl) obj + `(if (characterp ,obj) (char-code ,obj) ,obj)) -#+(or allegro cmu sbcl scl openmcl) -(defmacro ensure-char-integer (obj) - obj) +(defmacro ensure-char-storable (obj) + #+(or lispworks (and mcl (not openmcl))) obj + #+(or allegro cmu sbcl scl openmcl) `(char-code ,obj)) (defmacro pointer-address (obj) #+(or cmu scl)