~ chicken-core (chicken-5) e473108e2658ba5de2fb3848bbcf91b5501bcd43
commit e473108e2658ba5de2fb3848bbcf91b5501bcd43 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Wed Apr 14 09:33:59 2010 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Wed Apr 14 09:33:59 2010 +0200 updated NEWS diff --git a/NEWS b/NEWS index e2e89712..28c8e159 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,26 @@ +4.4.5 + +- certain compiler-warnings that are in really just notes + and don't indicate a possible error (like reimport of + identifiers) are only shown with -S or in verbose mode +- fixed handling of VARDIR in `chicken-install' (thanks to + Davide Puricelli) +- `chicken-install -test' doesn't runs tests for dependencies +- when a non-else clause follows an else-clause in `cond', + `case' or `select' a warning (note) is shown in verbose + mode +- removed the deprecated `define-extension' and + `define-compiled-syntax' +- `chicken-uninstall' now always asks before removing + extensions, unless `-force' is given +- improved performance of keyword-argument processing slightly +- added `fxeven?' and `fxodd?' +- `export' outside of a module definition has no effect +- `number->string' now accepts arbitrary bases between 2 and 16 + (thanks to Christian Kellermann) +- fixed `standard-extension' in `setup-api' module +- literal constants keep their identity, even when inlined + 4.4.4 - Unit library: added `fxodd?' and `fxeven?' diff --git a/manual/Extensions to the standard b/manual/Extensions to the standard index 7b88a0b5..53098560 100644 --- a/manual/Extensions to the standard +++ b/manual/Extensions to the standard @@ -159,7 +159,7 @@ of the string. === Number/String conversions -The optional "base" argument to{{string->number}} and {{number->string}} +The optional "base" argument to {{string->number}} and {{number->string}} may be any integral value from 2 to 36. === {{force}}Trap