diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 4823b0097..e4e7d4ae6 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,8 @@ +2001-02-08 Marius Vollmer + + * and-let-star-compat.scm: Display the warning to the + `current-error-port'. + 2001-02-04 Marius Vollmer Avoid the use of "*" in file names for the benefit of lesser diff --git a/libguile/ChangeLog b/libguile/ChangeLog index fa1ac14f3..d78043411 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,17 @@ +2001-02-08 Marius Vollmer + + * modules.h (scm_selected_module, scm_current_module): Renamed + scm_selected_module to scm_current_module to synchronize Scheme + and C names. + (scm_select_module, scm_set_current_module): Likewise. Changed + all uses. + + * ports.c (scm_port_for_each): Make a snapshot of the port table + before iterating over it. The table might change while the user + code is running. With the snapshot, the user can depend on the + fact that each port that was open at teh start of the iteration is + encountered exactly once. (ice-9 popen) depends on this. + 2001-02-08 Dirk Herrmann * strings.h (SCM_STRING_MAX_LENGTH): New macro. diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 77f682754..973038dd9 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,8 @@ +2001-02-08 Marius Vollmer + + * guile-test: Use (ice-9 and-let-star) instead of (ice-9 + and-let*). + 2001-01-26 Dirk Herrmann This patch fixes things that I have broken with the last one :-(