1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-06 23:50:18 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2001-02-08 18:52:05 +00:00
parent e11e60d635
commit 548728ea6d
3 changed files with 24 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* and-let-star-compat.scm: Display the warning to the
`current-error-port'.
2001-02-04 Marius Vollmer <mvo@zagadka.ping.de>
Avoid the use of "*" in file names for the benefit of lesser

View file

@ -1,3 +1,17 @@
2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* 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 <D.Herrmann@tu-bs.de>
* strings.h (SCM_STRING_MAX_LENGTH): New macro.

View file

@ -1,3 +1,8 @@
2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* guile-test: Use (ice-9 and-let-star) instead of (ice-9
and-let*).
2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
This patch fixes things that I have broken with the last one :-(