1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2003-07-08 00:33:43 +00:00
parent d40681ec4b
commit 005d2366ef
3 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-07-08 Kevin Ryde <user42@zip.com.au>
* configure.in (AC_CHECK_FUNCS): Add sincos.
2003-06-21 Kevin Ryde <user42@zip.com.au>
* configure.in (AC_CHECK_FUNCS): Add asinh, acosh, atanh and trunc.

View file

@ -1,3 +1,14 @@
2003-07-08 Kevin Ryde <user42@zip.com.au>
* numbers.c (s_scm_make_polar): Use sincos, when available.
(scm_magnitude): Use hypot.
* ports.c (scm_char_ready_p, scm_peek_char): In docstrings, don't use
@footnote since it doesn't go through to guile-procedures.txt.
* threads.c (scm_call_with_new_thread): In docstring, use "( )"
outside @var to quieten makeinfo, and use @code.
2003-07-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* gc-malloc.c (decrease_mtrigger): new function

View file

@ -1,7 +1,9 @@
2003-07-08 Kevin Ryde <user42@zip.com.au>
* tests/numbers.test (make-polar, magnitude): New tests.
* tests/srfi-1.test (delete, delete!): Add more tests.
(delete-duplicates, delete-duplicates!): Add tests.
(delete-duplicates, delete-duplicates!): New tests.
2003-06-21 Kevin Ryde <user42@zip.com.au>