* convert.i.c: fix various preprocessor usages of new public
authorRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:05:55 +0000 (20:05 +0000)
committerRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:05:55 +0000 (20:05 +0000)
symbols to expect 0 or 1 values rather than 1 or undefined.
i.e. change #ifdef to #if, etc.

libguile/convert.i.c

index 7725d91..703cf01 100644 (file)
@@ -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