diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:08:06 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:08:06 +0000 |
commit | 25e789d5657998a64b2b6276f880d768dc2d239d (patch) | |
tree | eb7e75e1a9b828dbef6c674a116fd2f365195520 /libguile/gc-mark.c | |
parent | c7df0739ae909249f5cb699ef8da9eccdd68cad8 (diff) | |
download | guile-25e789d5657998a64b2b6276f880d768dc2d239d.tar.gz |
* gc-mark.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.
Diffstat (limited to 'libguile/gc-mark.c')
-rw-r--r-- | libguile/gc-mark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc-mark.c b/libguile/gc-mark.c index f53a02529..7c176f101 100644 --- a/libguile/gc-mark.c +++ b/libguile/gc-mark.c @@ -290,7 +290,7 @@ scm_gc_mark_dependencies (SCM p) goto gc_mark_loop; } #endif -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS case scm_tc7_bvect: case scm_tc7_byvect: case scm_tc7_ivect: |