From: Chris Hanson Date: Sat, 14 Apr 2007 14:23:12 +0000 (+0000) Subject: Suppress "loading" and "dumping" messages for compiler. X-Git-Tag: 20090517-FFI~657 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=90dcf557ceac0143793c15b66f3f3e711ace650e;p=mit-scheme.git Suppress "loading" and "dumping" messages for compiler. --- diff --git a/v7/src/compiler/machines/C/ctop.scm b/v7/src/compiler/machines/C/ctop.scm index 25a3f964d..7fcf233ec 100644 --- a/v7/src/compiler/machines/C/ctop.scm +++ b/v7/src/compiler/machines/C/ctop.scm @@ -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)