#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/arith.scm,v 1.2 1989/10/27 07:24:51 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/arith.scm,v 1.3 1989/10/27 07:25:24 cph Exp $
Copyright (c) 1989 Massachusetts Institute of Technology
(cond ((or (default-object? radix)
(equal? radix '(HEUR)))
10)
- ((and (integer? radix)
- (exact? radix) (<= 2 radix 36))
+ ((and (exact-integer? radix)
+ (<= 2 radix 36))
radix)
(else
(bad-range 'NUMBER->STRING radix)))))
\ No newline at end of file