0.pre7.139:
[sbcl.git] / src / compiler / alpha / type-vops.lisp
index 4b31c6a..010d84e 100644 (file)
@@ -68,9 +68,9 @@
       (error "must supply at least one type for test-type"))
     (cond
      (fixnump
-      (when (remove-if #'(lambda (x)
-                          (or (= x even-fixnum-lowtag)
-                              (= x odd-fixnum-lowtag)))
+      (when (remove-if (lambda (x)
+                        (or (= x even-fixnum-lowtag)
+                            (= x odd-fixnum-lowtag)))
                       lowtags)
        (error "can't mix fixnum testing with other lowtags"))
       (when function-p
 (def-type-vops fixnump check-fixnum fixnum object-not-fixnum-error
   even-fixnum-lowtag odd-fixnum-lowtag)
 
-(def-type-vops functionp check-function function
-  object-not-function-error fun-pointer-lowtag)
+(def-type-vops functionp check-fun function
+  object-not-fun-error fun-pointer-lowtag)
 
 (def-type-vops listp check-list list object-not-list-error
   list-pointer-lowtag)