Change "FASDumping" message to "Dumping", to match change to
authorChris Hanson <org/chris-hanson/cph>
Thu, 17 Aug 1989 13:53:39 +0000 (13:53 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 17 Aug 1989 13:53:39 +0000 (13:53 +0000)
"FASLoading" message.

v7/src/runtime/global.scm
v8/src/runtime/global.scm

index ccb55c19752434fd191f5408167b34c1330689e1..202414e51ff316dd2ad774893d83d9db60464234 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/global.scm,v 14.13 1989/08/15 13:19:51 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/global.scm,v 14.14 1989/08/17 13:53:39 cph Exp $
 
 Copyright (c) 1988, 1989 Massachusetts Institute of Technology
 
@@ -248,7 +248,8 @@ MIT in each case. |#
   (let ((filename (canonicalize-output-filename filename))
        (port (cmdl/output-port (nearest-cmdl))))
     (newline port)
-    (write-string "FASDumping " port)    (write filename port)
+    (write-string "Dumping " port)
+    (write filename port)
     (if (not ((ucode-primitive primitive-fasdump) object filename false))
        (error "FASDUMP: Object is too large to be dumped" object))
     (write-string " -- done" port))
index 8d926520db2288fb7462ea8b1d40f63c0330cfe3..0482c402df2499492ad9292c88fbb9b3581ea04c 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/global.scm,v 14.13 1989/08/15 13:19:51 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/global.scm,v 14.14 1989/08/17 13:53:39 cph Exp $
 
 Copyright (c) 1988, 1989 Massachusetts Institute of Technology
 
@@ -248,7 +248,8 @@ MIT in each case. |#
   (let ((filename (canonicalize-output-filename filename))
        (port (cmdl/output-port (nearest-cmdl))))
     (newline port)
-    (write-string "FASDumping " port)    (write filename port)
+    (write-string "Dumping " port)
+    (write filename port)
     (if (not ((ucode-primitive primitive-fasdump) object filename false))
        (error "FASDUMP: Object is too large to be dumped" object))
     (write-string " -- done" port))