~ chicken-core (chicken-5) 4216221cb5f6e267ddb7cf1dd270285ddbd5adb3
commit 4216221cb5f6e267ddb7cf1dd270285ddbd5adb3
Author: Peter Bex <peter.bex@xs4all.nl>
AuthorDate: Wed Sep 14 09:45:50 2011 +0200
Commit: Peter Bex <peter.bex@xs4all.nl>
CommitDate: Wed Sep 14 09:45:50 2011 +0200
Add tests/numbers-string-conversion-tests.scm to distribution manifest and move NEWS item to a new 'HEAD' heading (it was posted under an already released Chicken)
diff --git a/NEWS b/NEWS
index 450c3c64..b5460df0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+HEAD
+
+- Runtime system
+ - deprecated "[+-]nan", "[+-]inf" and other notations "accidentally"
+ accepted by Chicken due to the underlying C library's strtod() function,
+ standardizing on "[+-]nan.0" and "[+-]inf.0" from R6RS (and soon R7RS),
+ when displaying numbers only these forms are generated now.
+
4.7.3
- Build system
@@ -9,10 +17,6 @@
- Runtime system
- fixed handling of "inf" and nan" floating-point predicates for Solaris
(thanks to Claude Marinier)
- - deprecated "[+-]nan", "[+-]inf" and other notations "accidentally"
- accepted by Chicken due to the underlying C library's strtod() function,
- standardizing on "[+-]nan.0" and "[+-]inf.0" from R6RS (and soon R7RS),
- when displaying numbers only these forms are generated now.
- support for re-loading of compiled files has now been completely
removed
diff --git a/distribution/manifest b/distribution/manifest
index 9a8f72e8..4f3ab2f5 100644
--- a/distribution/manifest
+++ b/distribution/manifest
@@ -127,6 +127,7 @@ tests/embedded3.c
tests/embedded4.scm
tests/condition-tests.scm
tests/fixnum-tests.scm
+tests/numbers-string-conversion-tests.scm
tests/path-tests.scm
tests/posix-tests.scm
tests/r4rstest.out
Trap