diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index d37621fd3..92ad17d0a 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,11 @@ +2006-10-05 Kevin Ryde + + * ftw.scm (visited?-proc): Use hashv since we know we're getting + numbers. Incorporate stat:dev, since stat:ino is only unique within a + single device. This fixes a bug where if two files with the same + inode on different devices where seen only the first would be returned + by ftw (and nftw). + 2006-09-23 Kevin Ryde * boot-9.scm (log, log10, exp, sqrt): Remove, now in diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index f631f3d32..a35e29704 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2006-10-05 Kevin Ryde + + * tests/ftw.test: New file. + * Makefile.am (SCM_TESTS): Add it. + 2006-10-03 Kevin Ryde * tests/eval.test (apply): New tests, exercising scm_tc7_subr_2o which