Avoid leaving trailing whitespace on notifications.
authorJoe Marshall <eval.apply@gmail.com>
Tue, 24 May 2011 17:12:35 +0000 (10:12 -0700)
committerJoe Marshall <eval.apply@gmail.com>
Tue, 24 May 2011 17:12:35 +0000 (10:12 -0700)
src/runtime/usrint.scm

index 2b0a702334d0688ac01346b767f5305b283a2610..3b59d95736a0b79d502ccc8544e7485b71bd3949 100644 (file)
@@ -312,7 +312,7 @@ USA.
             (fresh-line port)
             (write-notification-prefix port)
             (message (wrap-notification-port port))
-            (write-string "... " port)
+            (write-string "..." port)
             (set! n (output-port/bytes-written port))
             unspecific))
         (lambda ()
@@ -330,9 +330,9 @@ USA.
                 (begin
                   (fresh-line port)
                   (write-notification-prefix port)
-                  (write-string "... " port)))
+                  (write-string "..." port)))
             (set! n)
-            (write-string (if done? "done" "aborted") port)
+            (write-string (if done? " done" " aborted") port)
             (newline port)))))))
 \f
 (define (wrap-notification-port port)