1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 08:20:20 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2001-06-02 18:35:28 +00:00
parent 96e83482fb
commit b0c16cd922
2 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,17 @@
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
* 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 <mvo@zagadka.ping.de>
* boot-9.scm (top-repl): Revert part of the 2001-05-19 change.

View file

@ -1,5 +1,9 @@
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
* 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.