* Fix misplaced paren in the deftransform for
               SB-KERNEL:WORD-LOGICAL-NOT. No new tests, as
               this is thoroughly caught by the old ones.
 ;;; generate efficient code.
 
 (define-source-transform word-logical-not (x)
-  `(logand (lognot (the sb!vm:word ,x) #.(1- (ash 1 sb!vm:n-word-bits)))))
+  `(logand (lognot (the sb!vm:word ,x)) #.(1- (ash 1 sb!vm:n-word-bits))))
 
 (deftransform word-logical-and ((x y))
   '(logand x y))
 
 ;;; 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.36"
+"0.8.13.37"