From 77c25af7d1c0ee46bc185a645ce05f1f76a33f51 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Tue, 3 Nov 1998 16:09:29 +0000 Subject: [PATCH] * print.c (scm_iprin1): Removed suspect looking (and indeed malevolent) semicolon after test for user supplied closure print procedure. (Thanks to Telford Tendys.) --- libguile/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/print.c b/libguile/print.c index bbfe6183d..b259fbe3a 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -379,7 +379,7 @@ taloop: macro closures as well. */ if (SCM_FALSEP (scm_procedure_p (SCM_PRINT_CLOSURE)) || SCM_FALSEP (scm_printer_apply (SCM_PRINT_CLOSURE, - exp, port, pstate))); + exp, port, pstate))) { SCM name, code, env; if (SCM_TYP16 (exp) == scm_tc16_macro)