r10590: convert to :struct-pointer
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 8 Jun 2005 23:24:03 +0000 (23:24 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 8 Jun 2005 23:24:03 +0000 (23:24 +0000)
src/objects.lisp

index cdd3882296bdf1b9bd86269a2af63980a20ec838..6c8a5b651c439e3e4be97a45eaf5d0bc989bff76 100644 (file)
@@ -132,13 +132,11 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
   #+(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)))
+  #+lispworks `(if (characterp ,obj) ,obj (code-char ,obj)))
   
 (defmacro ensure-char-integer (obj)
   #+(or (and mcl (not openmcl))) `(char-code ,obj)
   #+(or allegro cmu sbcl scl openmcl) obj
-  #+lispworks
   ;; lispworks varies whether deref'ing array vs. slot access of a char
   #+lispworks
   `(if (integerp ,obj) ,obj (char-code ,obj)))