Fix portable-fixnum?.

This commit is contained in:
Vincent St-Amour 2011-01-12 09:58:10 -05:00
parent 324d1aa440
commit 7808be5e20

View File

@ -28,7 +28,7 @@
(define (portable-fixnum? n) (define (portable-fixnum? n)
(and (exact-integer? n) (and (exact-integer? n)
(< n (expt 2 30)) (< n (expt 2 30))
(> n (- (expt 2 30))))) (>= n (- (expt 2 30)))))
;; return the type of a literal value ;; return the type of a literal value
;; scheme-value -> type ;; scheme-value -> type