Oops. Better write things in the dumper as halfwords in addition
to reading them as such in the fasl loader.
(cond ((and (< num-consts #x100) (< total-length #x10000))
(dump-fop 'fop-small-code fasl-output)
(dump-byte num-consts fasl-output)
- (dump-integer-as-n-bytes total-length 2 fasl-output))
+ (dump-integer-as-n-bytes total-length (/ sb!vm:n-word-bytes 2) fasl-output))
(t
(dump-fop 'fop-code fasl-output)
(dump-word num-consts fasl-output)
;;; 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.14.3"
+"0.8.14.4"