Correction to array runtime assignment error

svn: r8340
This commit is contained in:
Kathy Gray 2008-01-16 00:11:20 +00:00
parent cc3ef674b8
commit 4213249665

View File

@ -350,7 +350,7 @@
(case (runtime-type-type rt)
((byte short int long) (and (number? val) (not (inexact? val))))
((char) (char? val))
((float double) (and (number? val) (inexact? val))))
((float double) (number? val) #;(and (number? val) (inexact? val))))
(is-a? val (runtime-type-type rt)))
(and
(is-a? val java-array)