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

*** empty log message ***

This commit is contained in:
Mikael Djurfeldt 1996-10-06 22:17:15 +00:00
parent 780d8c6e7f
commit e93ffe595c
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,13 @@
Mon Oct 7 00:14:17 1996 Mikael Djurfeldt <mdj@kenneth>
* init.c (scm_boot_guile_1): Bugfix: i --> base in argument to
`scm_init_threads'.
* throw.h (scm_catch_apply): Removed the `lazyp' argument.
* throw.c (scm_catch_apply): Finished implementation of
`lazy-catch'.
Sun Oct 6 05:26:05 1996 Gary Houston <ghouston@actrix.gen.nz>
* filesys.c (scm_sys_select): move SCM_ALLOW_INTS past the sreturn

View file

@ -214,7 +214,7 @@ cwdr (proc, a1, args, handler, stack_start)
#endif
/* Catch all errors. */
answer = scm_catch_apply (SCM_BOOL_T, proc, a1, args, handler, 0);
answer = scm_catch_apply (SCM_BOOL_T, proc, a1, args, handler);
scm_dowinds (old_winds, - scm_ilength (old_winds));
SCM_REDEFER_INTS;