*** empty log message ***
authorKevin Ryde <user42@zip.com.au>
Tue, 7 Sep 2004 00:36:48 +0000 (00:36 +0000)
committerKevin Ryde <user42@zip.com.au>
Tue, 7 Sep 2004 00:36:48 +0000 (00:36 +0000)
doc/ref/ChangeLog
libguile/ChangeLog
test-suite/ChangeLog

index 35cf8d3..55164d8 100644 (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.
index c9e80c3..61de93a 100644 (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
index 6afdf7e..da5fd9d 100644 (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.