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

* __scm.h: Fix a bunch of macros that were missing do-while(0)

sandwiches.

* debug.c, eval.c: Fix buggy uses of SCM_ALLOW_INTS (missing
semicolon) exposed by the above change.
This commit is contained in:
Greg J. Badros 1999-09-28 00:18:16 +00:00
parent 155265386a
commit bfc69694be
3 changed files with 16 additions and 16 deletions

View file

@ -89,7 +89,7 @@ scm_debug_options (setting)
SCM_RESET_DEBUG_MODE;
scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
scm_debug_eframe_size = 2 * SCM_N_FRAMES;
SCM_ALLOW_INTS
SCM_ALLOW_INTS;
return ans;
}