From: Nathan Froyd Date: Wed, 8 Sep 2004 19:22:47 +0000 (+0000) Subject: 0.8.14.4: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=e6c468c2b371f7deac2010cf03896a60974ea766;p=sbcl.git 0.8.14.4: Oops. Better write things in the dumper as halfwords in addition to reading them as such in the fasl loader. --- diff --git a/src/compiler/dump.lisp b/src/compiler/dump.lisp index 03f1d34..e498999 100644 --- a/src/compiler/dump.lisp +++ b/src/compiler/dump.lisp @@ -1102,7 +1102,7 @@ (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) diff --git a/version.lisp-expr b/version.lisp-expr index a185b7c..df7aa03 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; 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"