diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:06:23 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:06:23 +0000 |
commit | 1a603dc072b9637eef6e4cd26caab51069296357 (patch) | |
tree | 9ebac9210d10fe3a09d4dade5fe28761b9455b69 | |
parent | e7dd0639dede8a5e2d38b3f09b7ed541e41a99c9 (diff) | |
download | guile-1a603dc072b9637eef6e4cd26caab51069296357.tar.gz |
* eq.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/eq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eq.c b/libguile/eq.c index c7cea76db..1a7a3f21f 100644 --- a/libguile/eq.c +++ b/libguile/eq.c @@ -200,7 +200,7 @@ SCM_PRIMITIVE_GENERIC_1 (scm_equal_p, "equal?", scm_tc7_rpsubr, else break; } -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS case scm_tc7_bvect: case scm_tc7_uvect: case scm_tc7_ivect: case scm_tc7_fvect: case scm_tc7_cvect: case scm_tc7_dvect: case scm_tc7_svect: |