mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
*** empty log message ***
This commit is contained in:
parent
abb7e44d16
commit
ba1b077b86
3 changed files with 27 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
From John W. Eaton <jwe@bevo.che.wisc.edu>
|
||||||
|
|
||||||
|
* configure.in (AC_CHECK_FUNCS): Check for copysign.
|
||||||
|
|
||||||
2002-05-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
|
2002-05-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
|
||||||
|
|
||||||
* libguile.h: Added inclusion of "extensions.h".
|
* libguile.h: Added inclusion of "extensions.h".
|
||||||
|
|
15
NEWS
15
NEWS
|
@ -50,6 +50,21 @@ For example
|
||||||
Two new predicates 'inf?' and 'nan?' can be used to test for the
|
Two new predicates 'inf?' and 'nan?' can be used to test for the
|
||||||
special values.
|
special values.
|
||||||
|
|
||||||
|
** Inexact zero can have a sign.
|
||||||
|
|
||||||
|
Guile can now distinguish between plus and minus inexact zero, if your
|
||||||
|
platform supports this, too. The two zeros are equal according to
|
||||||
|
'=', but not according to 'eqv?'. For example
|
||||||
|
|
||||||
|
(- 0.0)
|
||||||
|
=> -0.0
|
||||||
|
|
||||||
|
(= 0.0 (- 0.0))
|
||||||
|
=> #t
|
||||||
|
|
||||||
|
(eqv? 0.0 (- 0.0))
|
||||||
|
=> #f
|
||||||
|
|
||||||
** We now have uninterned symbols.
|
** We now have uninterned symbols.
|
||||||
|
|
||||||
The new function 'make-symbol' will return a uninterned symbol. This
|
The new function 'make-symbol' will return a uninterned symbol. This
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
From John W. Eaton <jwe@bevo.che.wisc.edu>
|
||||||
|
|
||||||
|
* numbers.c (idbl2str): Don't omit sign when printing negative zero.
|
||||||
|
|
||||||
2002-05-14 Thien-Thi Nguyen <ttn@giblet.glug.org>
|
2002-05-14 Thien-Thi Nguyen <ttn@giblet.glug.org>
|
||||||
|
|
||||||
* gc_os_dep.c: For I386/OPENBSD, allow for `__i386__'
|
* gc_os_dep.c: For I386/OPENBSD, allow for `__i386__'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue