X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=382cc2e18ecfb3823715d5af65241166280be1fc;hb=74a1797f60e26c7adbc491840f89bbaab08e504d;hp=516526fd0e7d7e37c32a1696aa5331ff4f54d8aa;hpb=b841c32badc4627f390cc8ab71b17bc158e7c6b1;p=sbcl.git diff --git a/NEWS b/NEWS index 516526f..382cc2e 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,18 @@ ;;;; -*- coding: utf-8; -*- +changes in sbcl-1.0.19 relative to 1.0.18: + * bug fix: compiler no longer makes erronous assumptions in the + presense of non-foldable SATISFIES types. + * fixed some bugs revealed by Paul Dietz' test suite: + ** interval arithmetic during type derivation used inexact integer + to single-float coercions. + ** arithmetic operations involving large integers and single + floats give the same results in compiled and interpreted code. + ** deriving the result type of COERCE no longer signals an error + if the derived type of the second argument is a MEMBER type + containing invalid type specifiers. + ** ADJOIN with constant NIL as second argument works correctly. + ** FUNCTION-KEYWORDS was called SB-PCL::FUNCTION-KEYWORD-PARAMETERS. + changes in sbcl-1.0.18 relative to 1.0.17: * minor incompatible change: SB-SPROF:WITH-PROFILING now by default profiles only the current thread. @@ -29,6 +43,13 @@ changes in sbcl-1.0.18 relative to 1.0.17: fasl is now deleted. (reported by Attila Lendvai) * bug fix: READ-LINE always returned NIL for the last line in files. (reported by Yoshinori Tahara) + * bug fix: more accurate disassembly annotations of foreign function + calls. (thanks to Andy Hefner) + * bug fix: trimming non-simple strings and non-string string + designators when the there is nothing to trim works properly. + (thanks to James Knight) + * new feature: SB-POSIX bindings for mlockall, munlockall, and setsid. + (thanks to Travis Cross) * fixed some bugs revealed by Paul Dietz' test suite: ** NIL is a valid function name (regression at 1.0.13.38) ** FILL on lists was missing its return value (regression at 1.0.12.27)