1.0.5.54: fix thinko in src/code/array.lisp
authorNathan Froyd <froydnj@cs.rice.edu>
Sat, 19 May 2007 12:01:02 +0000 (12:01 +0000)
committerNathan Froyd <froydnj@cs.rice.edu>
Sat, 19 May 2007 12:01:02 +0000 (12:01 +0000)
* thanks to Eric Marsden

src/code/array.lisp
version.lisp-expr

index 39850a6..d61aa46 100644 (file)
@@ -349,7 +349,7 @@ of specialized arrays is supported."
                             (:little-endian
                              (- sb!vm:other-pointer-lowtag))
                             (:big-endian
-                             (- (1- n-word-bytes) sb!vm:other-pointer-lowtag)))))
+                             (- (1- sb!vm:n-word-bytes) sb!vm:other-pointer-lowtag)))))
                    ;; WIDETAG-OF needs extra code to handle
                    ;; LIST and FUNCTION lowtags. We're only
                    ;; dispatching on other pointers, so let's
index d27186c..6659295 100644 (file)
@@ -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".)
-"1.0.5.53"
+"1.0.5.54"