From ac796033ebb53f3eba47224d29e439e4cacbd5d1 Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Wed, 8 Dec 2010 23:22:27 +0100 Subject: [PATCH] A file in src/c/printer/ still used the old macro name CMU_FORMAT instead of ECL_CMU_FORMAT --- src/c/printer/write_object.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/c/printer/write_object.d b/src/c/printer/write_object.d index efe3af692..0359a33e9 100644 --- a/src/c/printer/write_object.d +++ b/src/c/printer/write_object.d @@ -88,7 +88,7 @@ cl_object si_write_object(cl_object x, cl_object stream) { bool circle; -#ifdef CMU_FORMAT +#ifdef ECL_CMU_FORMAT if (ecl_symbol_value(@'*print-pretty*') != Cnil) { cl_object f = funcall(2, @'pprint-dispatch', x); if (VALUES(1) != Cnil) { @@ -96,7 +96,7 @@ si_write_object(cl_object x, cl_object stream) goto OUTPUT; } } -#endif /* CMU_FORMAT */ +#endif /* ECL_CMU_FORMAT */ circle = ecl_print_circle(); if (circle && !Null(x) && !FIXNUMP(x) && !CHARACTERP(x) && (LISTP(x) || (x->d.t != t_symbol) || (Null(x->symbol.hpack))))