From feeedafb9cc5e12150814cd0432146ceb6e21c40 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 4 Jun 2001 22:18:59 +0000 Subject: [PATCH] *** empty log message *** --- ice-9/ChangeLog | 22 ++++++++++++++++++++++ libguile/ChangeLog | 15 +++++++++++++++ oop/ChangeLog | 5 +++++ 3 files changed, 42 insertions(+) diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 2b508f2f9..d433095e2 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,25 @@ +2001-06-05 Marius Vollmer + + * boot-9.scm (module-ensure-local-variable!): Renamed from + `module-ensure-variable!'. Make sure that there really is a local + variable, not just a visible one. + (module-ensure-variable!): See above. + (module-export!): Behave like always when deprecated features are + enabled, but issue a warning when re-exporting a variable. When + deprecated features are disabled, only export local variables, + creating them uninitialized when they don't yet exist. + (module-re-export!): New. Use this for re-exporting imported + variables. + (re-export): New, to go with `module-re-export!'. + + * format.scm: Added kluge at top that keeps `export' from + re-exporting the `format' variable of the `(guile)' module. + +2001-06-04 Marius Vollmer + + * boot-9.scm (named-module-use!, top-repl): Use resolve-interface + instead of resolve-module to get at the used module. + 2001-06-04 Gary Houston * rw.scm: export write-string/partial. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 6582f83be..892f631e9 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,12 @@ +2001-06-05 Marius Vollmer + + * extensions.c (scm_c_register_extension): Allow NULL as library + name. + (load_extension): Ignore NULL library names when comparing. + + * hash.c (scm_hasher): Use SCM_UNPACK in the case labels so that + non-pointers are being compared. Thanks to Alexander Klimov! + 2001-06-04 Gary Houston * rw.c (scm_write_string_partial): new procedure implementing @@ -6,6 +15,12 @@ 2001-06-04 Marius Vollmer + * keywords.c (keyword_print): Substract 1 from length of symbol + name, accounting for the silly dash. + + * dynl.c (scm_registered_modules, scm_clear_registered_modules): + Do not emit deprecation warning. + Added exception notice to all files. * dynl.c: Include "deprecation.h". diff --git a/oop/ChangeLog b/oop/ChangeLog index f6eebba30..be51f2c64 100644 --- a/oop/ChangeLog +++ b/oop/ChangeLog @@ -1,3 +1,8 @@ +2001-06-05 Marius Vollmer + + * goops.scm: Use `re-export' instead of `export' when re-exporting + `class-of'. + 2001-05-19 Marius Vollmer * goops.scm: Call `%init-goops-builtins' instead of using the