diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index a9e34b66f..d154a7982 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,17 @@ +2001-06-02 Marius Vollmer + + * Makefile.am (psyntax.pp): Make it dependent on psyntax.ss and + fix command so that it works. + + * session.scm (apropos-fold, submodules, apropos): Be careful not + to access unbound variables. + + * boot-9.scm (module-ensure-variable!): New. + (module-export!): Use it to ensure that there is a variable to + export. Previously, we would always create a new variable, copy + the value over, and export the new variable. This confused + syncase since it keys important properties on variables. + 2001-06-01 Marius Vollmer * boot-9.scm (top-repl): Revert part of the 2001-05-19 change. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 1afe9ff0c..f9c1ac347 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,9 @@ 2001-06-02 Marius Vollmer + * strports.c (scm_eval_string): Use scm_primitive_eval_x instead + of scm_eval_x to allow module changes between the forms in the + string. Set/restore module using scm_c_call_with_current_module. + * mkstemp.c: New file, slightly modified from libiberties mkstemps.c.