Hi, Some interactions between typep and '(signed-byte x). With gcl-2.6.7 or gcl-2.6.8pre:
(typep 2000000000000000000000000000000 '(signed-byte 32)) return true (typep 2000000000000000000000000000000 '(signed-byte 16)) return true (typep 2000000000000000000000000000000 '(signed-byte 64)) return true (typep 2000000000000000000000000000000 '(signed-byte 9)) return true With gcl from cvs just checked out (CLtL1): (typep 2000000000000000000000000000000 '(signed-byte 32)) return false (typep 2000000000000000000000000000000 '(signed-byte 64)) return false (typep 20000 '(signed-byte 512)) return true (typep 20000 '(signed-byte 64)) return true (typep 20000 '(signed-byte 32)) return true (typep 20000 '(signed-byte 16)) return true (typep 20000 '(signed-byte 9)) return false Cheers, Greg _______________________________________________ Gcl-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gcl-devel
