* Make :precision :53-bit in *saved-floating-point-modes*
conditional upon #!+x86.
(defvar *saved-floating-point-modes*
'(:traps (:overflow #!-netbsd :invalid :divide-by-zero)
:rounding-mode :nearest :current-exceptions nil
- :accrued-exceptions nil :fast-mode nil :precision :53-bit))
+ :accrued-exceptions nil :fast-mode nil
+ #!+x86 :precision #!+x86 :53-bit))
(defun float-cold-init-or-reinit ()
(apply #'set-floating-point-modes *saved-floating-point-modes*))
;;; 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.9.18.3"
+"0.9.18.4"