X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=bc5a8ea7f3629fb0bf664c3fa4969c5a51710751;hb=992e6a70a0cae3f6d43bdbba18f77306fdf10662;hp=20abf71e4ff809e88c4474f2997dfae60909371b;hpb=b8a2248d3193902592fb58c5ea74209dc1124f08;p=sbcl.git diff --git a/NEWS b/NEWS index 20abf71..bc5a8ea 100644 --- a/NEWS +++ b/NEWS @@ -1,11 +1,24 @@ ;;;; -*- coding: utf-8; -*- changes in sbcl-0.9.14 relative to sbcl-0.9.13: + * feature: thread support on Solaris/x86, and experimental thread support + on OS X/x86. + * feature: SBCL now tries to signal a STORAGE-CONDITION when running out + of heap. + * feature: SBCL now provides USE-VALUE and STORE-VALUE restarts in the + default method for SLOT-UNBOUND. * minor incompatible change: prevent the user from specializing the new-value argument to SB-MOP:SLOT-VALUE-USING-CLASS. It's somewhat counter to the intent of the protocol, I (CSR) think, and additionally it just doesn't work in SBCL as currently implemented, thanks to optimizations (that are always valid for the other three SLOT-VALUEish functions, but not for the setter). + * minor incompatibale change: the :SB-LDB feature is now enabled by + default, and DISABLE-DEBUGGER and ENABLE-DEBUGGER also affect + the low-level debugger. + * bug fix: class objects can be used as specializers in methods. + (reported by Pascal Costanza) + * bug fix: native unparsing of pathnames with :DIRECTORY NIL failed + with a type error. (reported by blitz_ on #lisp) * bug fix: unparsing logical pathnames with :NAME :WILD :TYPE NIL failed with a type error. (reported by Pascal Bourguignon) * bug fix: merging pathnames against defaults with :DIRECTORY @@ -16,6 +29,9 @@ changes in sbcl-0.9.14 relative to sbcl-0.9.13: * bug fix: saving large (>2GB) cores on x86-64 now works * bug fix: a x86-64 backend bug when compiling (setf aref) with a constant index and a (simple-array (signed-byte 32)) array + * bug fix: NAME-CHAR on an invalid symbol no longer signals an + error (patch by Robert J. Macomber) + * feature: TIME now displays the amount of run-time spent in GC * fixed some bugs revealed by Paul Dietz' test suite: ** MISC.641: LET-conversion were not supposed to work in late compilation stages.