From c09346521eed9b46e0efe5a6173492ce0d675841 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 1 Sep 2008 23:54:15 -0700 Subject: [PATCH] Fix compilation #ifndef STACK_CHECKING. * libguile/debug.c (scm_debug_options): Fix compilation #ifndef STACK_CHECKING. --- libguile/debug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/debug.c b/libguile/debug.c index 08793f3ff..1f2acc9e6 100644 --- a/libguile/debug.c +++ b/libguile/debug.c @@ -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 ();