diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:05:55 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:05:55 +0000 |
commit | d96208cc722cf194b511ce43c8d74a8cc47ed352 (patch) | |
tree | dc07de456510f5a122188158e7e696bc55ecb73c | |
parent | 4ccb2cd2f48acb88d9c1d1d177ceacf2c1a88f2e (diff) | |
download | guile-d96208cc722cf194b511ce43c8d74a8cc47ed352.tar.gz |
* convert.i.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.
-rw-r--r-- | libguile/convert.i.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/convert.i.c b/libguile/convert.i.c index 7725d9140..703cf0141 100644 --- a/libguile/convert.i.c +++ b/libguile/convert.i.c @@ -128,7 +128,7 @@ SCM2CTYPES (SCM obj, CTYPE *data) } break; -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS /* array conversions (uniform vectors) */ case ARRAYTYPE: #ifdef ARRAYTYPE_OPTIONAL |