diff src/errormsg.sml @ 591:8f8771f32909

Injecting a float
author Adam Chlipala <adamc@hcoop.net>
date Thu, 01 Jan 2009 15:59:02 -0500
parents daa4f1d7a663
children 9b54fbe1efdb
line wrap: on
line diff
--- a/src/errormsg.sml	Thu Jan 01 15:11:17 2009 -0500
+++ b/src/errormsg.sml	Thu Jan 01 15:59:02 2009 -0500
@@ -95,7 +95,7 @@
                TextIO.output1 (TextIO.stdErr, #"\n");
                errors := true)
 fun errorAt span s = (TextIO.output (TextIO.stdErr, spanToString span);
-                      TextIO.output1 (TextIO.stdErr, #" ");
+                      TextIO.output (TextIO.stdErr, ": ");
                       error s)
 fun errorAt' span s = errorAt (spanOf span) s