summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-09-08 14:36:16 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-09-08 14:36:16 +0000
commite548be5fe6e9c85046bd3c46134f05897646f497 (patch)
treeb3a744e0103320a33777efa815ac74b58f70cfda
parentbdb112ea6bfde57fbc40f5da0593160b511da9cd (diff)
downloadguile-e548be5fe6e9c85046bd3c46134f05897646f497.tar.gz
*** empty log message ***
-rw-r--r--ice-9/ChangeLog6
-rw-r--r--libguile/ChangeLog6
2 files changed, 12 insertions, 0 deletions
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog
index 6ae5edc0a..f6ec86044 100644
--- a/ice-9/ChangeLog
+++ b/ice-9/ChangeLog
@@ -1,3 +1,9 @@
+2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
+
+ * boot-9.scm (expt): Only call integer-expt for an exact integer
+ exponent, not for an inexact integer one. Also, let integer-expt
+ handle negative exponents instead of doing it here.
+
2004-09-02 Kevin Ryde <user42@zip.com.au>
* format.scm (format:out): Ignore excess arguments, per common lisp.
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index 86f0f0f5d..2426da2bb 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -1,3 +1,9 @@
+2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
+
+ * eq.c (real_eqv): Pretend that all NaNs are equal.
+
+ * numbers.c (scm_integer_expt): Do not accept inexact integers.
+
2004-09-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* srfi-13.c (scm_string_trim_right, scm_string_xcopy_x): Correctly