From 5f4df9730d09d62b65ca25b91b5ff735f8488766 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 27 Mar 2003 20:09:29 +0000 Subject: [PATCH] * 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. --- libguile/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: