Suppress "loading" and "dumping" messages for compiler.
authorChris Hanson <org/chris-hanson/cph>
Sat, 14 Apr 2007 14:23:12 +0000 (14:23 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 14 Apr 2007 14:23:12 +0000 (14:23 +0000)
v7/src/compiler/machines/C/ctop.scm

index 25a3f964d6e3065f9af938fe0c5f0be8f5936441..7fcf233ecebdd30658e84f1d4f783d6191026733 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: ctop.scm,v 1.24 2007/04/14 03:52:35 cph Exp $
+$Id: ctop.scm,v 1.25 2007/04/14 14:23:12 cph Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -581,14 +581,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)
-         (fasdump object temp #t)
-         (compress temp path))))))
+  (call-with-temporary-filename
+    (lambda (temp)
+      (fasdump object temp #t)
+      (compress temp path))))
 
 (define compiler:dump-info-file compiler:dump-bci-file)
 \f