summaryrefslogtreecommitdiff
path: root/libguile/stackchk.h
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:56 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 20:09:56 +0000
commit6c4eb8e12e0acc64e3bb7917b12bf7b555d359c3 (patch)
treea0ff1baabb5a5cdd20274b698715e06f56748fd1 /libguile/stackchk.h
parent8dda3eea36d5051941b58d510b291d01ba4b3a59 (diff)
downloadguile-6c4eb8e12e0acc64e3bb7917b12bf7b555d359c3.tar.gz
* 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.
Diffstat (limited to 'libguile/stackchk.h')
-rw-r--r--libguile/stackchk.h2
1 files changed, 1 insertions, 1 deletions
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