From d96208cc722cf194b511ce43c8d74a8cc47ed352 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 27 Mar 2003 20:05:55 +0000 Subject: [PATCH] * 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. --- libguile/convert.i.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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