* fixed cross-compiler leakages that prevented building a 32-bit
target with a 64-bit host compiler.
* contrib improvement: implement SB-POSIX:MKSTEMP (Yannick Gingras)
+ * fixed some bugs revealed by Paul Dietz' test suite:
+ ** the type-error signalled from WARN has a filled-in DATUM slot.
changes in sbcl-0.9.0 relative to sbcl-0.8.21:
* incompatible change: the --noprogrammer option, deprecated since
(%failed-enforce-type ,value ',type))))
(defun %failed-enforce-type (value type)
- (error 'simple-type-error ; maybe should be TYPE-BUG, subclass of BUG?
- :value value
+ ;; maybe should be TYPE-BUG, subclass of BUG? If it is changed,
+ ;; check uses of it in user-facing code (e.g. WARN)
+ (error 'simple-type-error
+ :datum value
:expected-type type
:format-control "~@<~S ~_is not a ~_~S~:>"
:format-arguments (list value type)))
;;; 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.0.13"
+"0.9.0.14"