Put semicolon in front of "Automagically impurifying..." message.
authorChris Hanson <org/chris-hanson/cph>
Tue, 26 Nov 1991 06:53:41 +0000 (06:53 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 26 Nov 1991 06:53:41 +0000 (06:53 +0000)
v7/src/runtime/uerror.scm

index 3946c1376086a6d2a33e9349b55dbbba8cc0d80a..c3c290be4e964ae07c987fdc0b4fb95f5ed41469 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/uerror.scm,v 14.29 1991/10/29 14:32:14 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/uerror.scm,v 14.30 1991/11/26 06:53:41 cph Exp $
 
 Copyright (c) 1988-91 Massachusetts Institute of Technology
 
@@ -901,9 +901,9 @@ MIT in each case. |#
     (let ((frame (continuation/first-subproblem continuation)))
       (if (apply-frame? frame)
          (let ((object (apply-frame/operand frame 0)))
-           (let ((port (nearest-cmdl/output-port)))
-             (newline port)
-             (write-string "Automagically impurifying an object..." port))
+           (let ((port (nearest-cmdl/port)))
+             (fresh-line port)
+             (write-string ";Automagically impurifying an object..." port))
            (impurify object)
            (continuation object))))))