diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:07:23 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:07:23 +0000 |
commit | 4efd15dc3bf5d191fae17202eff1a69eb23b02a3 (patch) | |
tree | aad926ab295ecd1c371dd9295521b621d7dd644d /libguile/feature.c | |
parent | 005f04cd6ce7b18ead7877c5f8c40a1c797cdee7 (diff) | |
download | guile-4efd15dc3bf5d191fae17202eff1a69eb23b02a3.tar.gz |
* feature.c: 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/feature.c')
-rw-r--r-- | libguile/feature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index da54b9dde..ab5ce0697 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -120,7 +120,7 @@ scm_init_feature() #ifndef CHEAP_CONTINUATIONS scm_add_feature ("full-continuation"); #endif -#ifndef SCM_USE_NULL_THREADS +#if SCM_USE_NULL_THREADS scm_add_feature ("threads"); #endif |