1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2004-01-06 18:17:30 +00:00
parent becc4b2716
commit aacff585bc
3 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* scheme-control.texi: Document scm_on_unwind_with_scm and
scm_on_rewind_with_scm.
2004-01-05 Marius Vollmer <mvo@zagadka.de>
* scheme-scheduling.texi: Document scm_with_[un]blocked_asyncs.

View file

@ -1,3 +1,22 @@
2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* ports.c (swap_ports, scm_with_current_foo_port): Do not allocate
swap_data on stack, use a 'malloc obj'.
* fluids.h, fluids.c (scm_make_initial_fluids, scm_copy_fluids,
scm_swap_fluids, scm_swap_fluids_reverse): Renamed to
scm_i_... since they are internal. Changed all uses.
* dynwind.c (frame_print): Removed, use the default printer.
(WINDER_F_MARK, WINDER_MARK_P, winder_mark): New.
(scm_on_unwind_with_scm, scm_on_rewind_with_scm): New. Use above
to protect SCM values.
* dynwind.h (SCM_F_WIND_EXPLICITELY,
SCM_F_WIND_EXPLICITLY): It's "explicitly" not "explicitely", damn.
Changed all uses.
(scm_on_unwind_with_scm, scm_on_rewind_with_scm): New.
2004-01-05 Marius Vollmer <mvo@zagadka.de>
* ports.h, ports.c (scm_with_current_input_port,

View file

@ -1,3 +1,8 @@
2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* standalone/test-unwind.c (close_port, delete_file, check_ports):
New.
2004-01-03 Marius Vollmer <mvo@zagadka.de>
* standalone/test-unwind.c: New test, for the frames stuff.