*** empty log message ***

This commit is contained in:
Kevin Ryde 2004-09-07 00:36:48 +00:00
commit 5de126589a
3 changed files with 34 additions and 0 deletions

View file

@ -3,6 +3,14 @@
* api-procedures.texi (let-keywords Reference): Typo, should be
let-keywords* @defunx.
* api-scheduling.texi (Parallel Forms): In parallel, letpar, par-map,
n-par-map and n-for-each-par-map, describe each form as being in its
own thread, not a new thread, since for instance the calling thread is
used when only one form. Plus typo in n-for-each-par-map example
equivalent for-each + n-par-map.
* posix.texi (Locales): Use @var for category arg.
2004-09-02 Kevin Ryde <user42@zip.com.au>
* misc-modules.texi (Formatted Output): Excess arguments are ignored.

View file

@ -1,3 +1,21 @@
2004-09-07 Kevin Ryde <user42@zip.com.au>
* numbers.c (scm_integer_expt): Reject exponent +/-inf.
(scm_integer_p): +/-inf is not an integer.
Bug report by Bill Schottstaedt.
* ports.c (scm_getc, scm_lfwrite): Recognise \a \b and \r for port
column.
* ports.h (SCM_ZEROCOL, SCM_DECCOL): New macros.
* posix.c (scm_access): Update docstring per manual.
* posix.c (scm_nice): Correction to error detection. Reported by
Matthias Koeppe.
* stime.c (scm_current_time, scm_gettimeofday, scm_strptime): Don't
throw error before unlocking mutex with SCM_ALLOW_INTS.
2004-09-06 Kevin Ryde <user42@zip.com.au>
* stime.h (SCM_TIME_UNITS_PER_SECOND): Use sysconf(_SC_CLK_TCK) when

View file

@ -1,3 +1,11 @@
2004-09-07 Kevin Ryde <user42@zip.com.au>
* tests/numbers.test (integer-expt): New tests, of infinite exponents.
(integer?): Exercise nan and +/-inf.
* tests/time.test (gmtime, strptime): New tests, but unresolved.
(internal-time-units-per-second): New test.
2004-09-02 Kevin Ryde <user42@zip.com.au>
* tests/format.test (~@d): New tests.