Fix FILL simple-base-string transform with non-constant item
(dotimes (i sb!vm:n-word-bytes accum)
(setf accum (logior accum (ash code (* 8 i))))))
`(let ((code (sb!xc:char-code item)))
- (logior ,@(loop for i from 0 upto sb!vm:n-word-bytes
+ (logior ,@(loop for i from 0 below sb!vm:n-word-bytes
collect `(ash code ,(* 8 i))))))))
`(let ((length (length sequence))
(value ,value))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.13.56"
+"0.8.13.57"