X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=ccab6c5093b1a1529396db1dd17d3c76a4e83001;hb=e119a2f79cf36039a39996f5490934b4d927529a;hp=42a22accf8094d87405402491f08e6984f56fc58;hpb=1907ad030ca773162bcd9ff90fdc485a035591f4;p=sbcl.git diff --git a/NEWS b/NEWS index 42a22ac..ccab6c5 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,12 @@ changes in sbcl-1.0.16 relative to 1.0.15: * minor incompatible change: change PROBE-FILE back to returning NIL whenever we can't get a truename, as was the case before 1.0.14. + * minor incompatible change: SB-BSD-SOCKETS:NAME-SERVICE-ERROR now + inherits from ERROR instead of just CONDITION. + * new feature: SB-INTROSPECT can provide source locations for instances + as well. (thanks to Tobian Ritterweiler) + * optimization: binding special variables now generates smaller code + on threaded platforms. * optimization: MEMBER and ASSOC are over 50% faster for :TEST #'EQ and cases where no :TEST is given but the compiler can infer that the element to search is of type (OR FIXNUM (NOT NUMBER)). @@ -9,6 +15,15 @@ changes in sbcl-1.0.16 relative to 1.0.15: * optimization: modular arithmetic for a particular requested width is implemented using a tagged representation unless a better representation is available. + * fixed bug 423: TRULY-THE and *CHECK-CONSISTENCY* interaction. + * bug fix: SB-BSD-SOCKETS:MAKE-INET-ADDRESS checks the input string + for wellformedness and returns a specialized vector. (reported by + Francois-Rene Rideau) + * bug fix: FIND-CLASS was not thread-safe. (reported by Attila Lendvai) + * bug fix: ~R was broken for vigtillions. (thanks to Luis Oliveira) + * bug fix: attempt to obtain *SCHEDULER-LOCK* recursively when + unscheduling timer at the same time as another timer fires. + * bug fix: don't reschedule timers for dead threads. * bug fix: periodic polling was broken. (thanks to Espen S Johnsen) * bug fix: copying output from RUN-PROGRAM to a stream signalled bogus errors if select() was interrupted.