diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-01-01 15:59:02 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-01-01 15:59:02 -0500 |
commit | 17ffca0b16e45aa093a9c1d55b0e629a4cf26798 (patch) | |
tree | f1ee7e2c237ab69902362a6bf97acdd8cfdea87d /src/errormsg.sml | |
parent | 8bb915433716ecfdcf2c2209d1a62796ebde4714 (diff) |
Injecting a float
Diffstat (limited to 'src/errormsg.sml')
-rw-r--r-- | src/errormsg.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errormsg.sml b/src/errormsg.sml index e816b9a2..f402c5aa 100644 --- a/src/errormsg.sml +++ b/src/errormsg.sml @@ -95,7 +95,7 @@ fun error s = (TextIO.output (TextIO.stdErr, s); 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 |