diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:56 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:56 +0000 |
commit | 6c4eb8e12e0acc64e3bb7917b12bf7b555d359c3 (patch) | |
tree | a0ff1baabb5a5cdd20274b698715e06f56748fd1 /libguile/stackchk.h | |
parent | 8dda3eea36d5051941b58d510b291d01ba4b3a59 (diff) | |
download | guile-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.h | 2 |
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 |