diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:58:39 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:58:39 +0000 |
commit | ffbda7474a8369386e43a8f78970773427e8bb04 (patch) | |
tree | 20ebf6453ce00d262d38687dc562819ab8835da2 /libguile/print.c | |
parent | 2546b5c35429b7144b1a235c0fa83d09e5a835f4 (diff) | |
download | guile-ffbda7474a8369386e43a8f78970773427e8bb04.tar.gz |
* print.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/print.c b/libguile/print.c index 20332e0b4..4b620796d 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 HAVE_ARRAYS +#ifdef SCM_HAVE_ARRAYS case scm_tc7_bvect: case scm_tc7_byvect: case scm_tc7_svect: @@ -595,7 +595,7 @@ scm_iprin1 (SCM exp, SCM port, scm_print_state *pstate) case scm_tc7_fvect: case scm_tc7_dvect: case scm_tc7_cvect: -#ifdef HAVE_LONG_LONGS +#if SCM_SIZEOF_LONG_LONG != 0 case scm_tc7_llvect: #endif scm_raprin1 (exp, port, pstate); |