From: Chris Hanson <org/chris-hanson/cph>
Date: Sat, 14 Apr 2007 05:58:59 +0000 (+0000)
Subject: Suppress "loading" and "dumping" messages for compiler.
X-Git-Tag: 20090517-FFI~659
X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b985641ae0bf13863201f63e0963eecf674a8757;p=mit-scheme.git

Suppress "loading" and "dumping" messages for compiler.
---

diff --git a/v7/src/compiler/base/asstop.scm b/v7/src/compiler/base/asstop.scm
index 185b07fd9..4e8bf9df5 100644
--- a/v7/src/compiler/base/asstop.scm
+++ b/v7/src/compiler/base/asstop.scm
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: asstop.scm,v 1.18 2007/04/14 05:52:28 cph Exp $
+$Id: asstop.scm,v 1.19 2007/04/14 05:58:59 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -300,14 +300,10 @@ USA.
     (dump-compressed binf bci-path)))
 
 (define (dump-compressed object path)
-  (with-notification (lambda (port)
-		       (write-string "Dumping " port)
-		       (write (enough-namestring path) port))
-    (lambda ()
-      (call-with-temporary-filename
-	(lambda (temp)
-	  (compiler-file-output object temp)
-	  (compress temp path))))))
+  (call-with-temporary-filename
+    (lambda (temp)
+      (compiler-file-output object temp)
+      (compress temp path))))
 
 (define compiler:dump-info-file
   compiler:dump-bci-file)