* The OFFSET argument is a (SIGNED-BYTE #.N-WORD-BITS), not a FIXNUM.
;;; Return a new SAP, OFFSET bytes from SAP.
(defun sap+ (sap offset)
(declare (type system-area-pointer sap)
- (fixnum offset))
+ (type (signed-byte #.sb!vm:n-word-bits) offset))
(sap+ sap offset))
;;; Return the byte offset between SAP1 and SAP2.
;;; 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.4.85"
+"1.0.4.86"