diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:29 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-27 20:09:29 +0000 |
commit | 5f4df9730d09d62b65ca25b91b5ff735f8488766 (patch) | |
tree | 68b1f2267acddb37fccf0dacb18fa210792bc78d /libguile/print.c | |
parent | b645bf7481ec363a416ec5bc8782bac3c70062bd (diff) | |
download | guile-5f4df9730d09d62b65ca25b91b5ff735f8488766.tar.gz |
* print.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/print.c')
-rw-r--r-- | libguile/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/print.c b/libguile/print.c index 4b620796d..c1eccb169 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -586,7 +586,7 @@ scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate) } EXIT_NESTED_DATA (pstate); break; -#ifdef SCM_HAVE_ARRAYS +#if SCM_HAVE_ARRAYS case scm_tc7_bvect: case scm_tc7_byvect: case scm_tc7_svect: |