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

Fix compilation #ifndef STACK_CHECKING.

* libguile/debug.c (scm_debug_options): Fix compilation #ifndef
  STACK_CHECKING.
This commit is contained in:
Andy Wingo 2008-09-01 23:54:15 -07:00
parent 049af8259b
commit c09346521e

View file

@ -69,7 +69,9 @@ SCM_DEFINE (scm_debug_options, "debug-options-interface", 0, 1, 0,
SCM_OUT_OF_RANGE (1, setting);
}
SCM_RESET_DEBUG_MODE;
#ifdef STACK_CHECKING
scm_stack_checking_enabled_p = SCM_STACK_CHECKING_P;
#endif
scm_debug_eframe_size = 2 * SCM_N_FRAMES;
scm_dynwind_end ();