1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 07:50:20 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2004-04-27 23:48:18 +00:00
parent 18137a7e19
commit 69b6234893
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,11 @@
2004-04-28 Kevin Ryde <user42@zip.com.au>
* numbers.c (scm_floor, scm_ceiling, scm_truncate_number,
scm_round_number): New functions, replacing scm_tc7_cxr definitions,
and ensuring exact arguments give exact results, as required by R5RS.
Derived in part from the same by Marius in the cvs head. Reported by
Ray Lehtiniemi.
2004-04-25 Kevin Ryde <user42@zip.com.au>
* chars.c (scm_char_upcase, scm_char_downcase, scm_upcase,

View file

@ -1,3 +1,8 @@
2004-04-28 Kevin Ryde <user42@zip.com.au>
* tests/numbers.test (truncate, round, floor, ceiling): Add tests, in
particular exercising exactness fixes and scm_round 2^53-1 fix.
2004-04-24 Kevin Ryde <user42@zip.com.au>
* tests/srfi-1.test: New file, exercising extended list-copy.