From b1e93821a3065f1ebccc55dadf678bda75c0f34d Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 9 Mar 2009 22:01:27 +0100 Subject: [PATCH] fix begin-deprecated * module/ice-9/boot-9.scm (begin-deprecated): Fix to output source code, doh. --- module/ice-9/boot-9.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm index 0f57e7f84..d36d33bf9 100644 --- a/module/ice-9/boot-9.scm +++ b/module/ice-9/boot-9.scm @@ -192,7 +192,7 @@ (defmacro begin-deprecated forms (if (include-deprecated-features) `(begin ,@forms) - (begin))) + `(begin)))