From 6c4eb8e12e0acc64e3bb7917b12bf7b555d359c3 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 27 Mar 2003 20:09:56 +0000 Subject: [PATCH] * stackchk.h: fix various preprocessor usages of new public symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc. --- libguile/stackchk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/stackchk.h b/libguile/stackchk.h index eb03b106f..d513414df 100644 --- a/libguile/stackchk.h +++ b/libguile/stackchk.h @@ -66,7 +66,7 @@ #endif #ifdef STACK_CHECKING -# ifdef SCM_STACK_GROWS_UP +# if SCM_STACK_GROWS_UP # define SCM_STACK_OVERFLOW_P(s)\ (s > ((SCM_STACKITEM *) SCM_BASE (scm_rootcont) + SCM_STACK_LIMIT)) # else