Leave the default `*current-warning-prefix*' at the REPL.
authorLudovic Courtès <ludo@gnu.org>
Mon, 14 Feb 2011 12:47:20 +0000 (13:47 +0100)
committerLudovic Courtès <ludo@gnu.org>
Mon, 14 Feb 2011 12:47:20 +0000 (13:47 +0100)
* module/system/repl/common.scm (repl-compile): Leave the default
  `*current-warning-prefix*'.

module/system/repl/common.scm

index 70232ab..24a583c 100644 (file)
@@ -159,9 +159,8 @@ See <http://www.gnu.org/licenses/lgpl.html>, 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))))