From d215190e5c1b540d3ec2fc0dbb51b2afa8ce1301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 14 Feb 2011 13:47:20 +0100 Subject: [PATCH] Leave the default `*current-warning-prefix*' at the REPL. * module/system/repl/common.scm (repl-compile): Leave the default `*current-warning-prefix*'. --- module/system/repl/common.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/module/system/repl/common.scm b/module/system/repl/common.scm index 70232ab76..24a583ce6 100644 --- a/module/system/repl/common.scm +++ b/module/system/repl/common.scm @@ -159,9 +159,8 @@ See , for more details.") (define (repl-compile repl form) (let ((from (repl-language repl)) (opts (repl-compile-options repl))) - (with-fluids ((*current-warning-prefix* "")) ; XXX: Keep ";;; "? - (compile form #:from from #:to 'objcode #:opts opts - #:env (current-module))))) + (compile form #:from from #:to 'objcode #:opts opts + #:env (current-module)))) (define (repl-parse repl form) (let ((parser (language-parser (repl-language repl))))