summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 20:08:01 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 20:08:01 +0000
commitc7df0739ae909249f5cb699ef8da9eccdd68cad8 (patch)
tree3c48b06550d23578a100f0a7a0f7da3a2eb4ac9b
parent4efd15dc3bf5d191fae17202eff1a69eb23b02a3 (diff)
downloadguile-c7df0739ae909249f5cb699ef8da9eccdd68cad8.tar.gz
* gc-card.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/gc-card.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc-card.c b/libguile/gc-card.c
index c2a316a80..32c363dad 100644
--- a/libguile/gc-card.c
+++ b/libguile/gc-card.c
@@ -166,7 +166,7 @@ scm_i_sweep_card (scm_t_cell * p, SCM *free_list, scm_t_heap_segment*seg)
"compiled closure");
break;
#endif
-#ifdef SCM_HAVE_ARRAYS
+#if SCM_HAVE_ARRAYS
case scm_tc7_bvect:
{
unsigned long int length = SCM_BITVECTOR_LENGTH (scmptr);