[commit: ghc] master: Re-adjust whitespace (ed341a2)
Ian Lynagh
igloo at earth.li
Sun Jun 23 14:14:33 CEST 2013
Repository : http://darcs.haskell.org/ghc.git/
On branch : master
https://github.com/ghc/ghc/commit/ed341a2ae40be7d46b536cabf1cbac7450f3607e
>---------------------------------------------------------------
commit ed341a2ae40be7d46b536cabf1cbac7450f3607e
Author: Ian Lynagh <ian at well-typed.com>
Date: Sun Jun 23 12:54:17 2013 +0100
Re-adjust whitespace
>---------------------------------------------------------------
compiler/main/DynFlags.hs | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 7292ce5..e123684 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -1383,16 +1383,17 @@ defaultFatalMessager = hPutStrLn stderr
defaultLogAction :: LogAction
defaultLogAction dflags severity srcSpan style msg
= case severity of
- SevOutput -> printSDoc msg style
- SevDump -> printSDoc (msg $$ blankLine) style
+ SevOutput -> printSDoc msg style
+ SevDump -> printSDoc (msg $$ blankLine) style
SevInteractive -> putStrSDoc msg style
- SevInfo -> printErrs msg style
- SevFatal -> printErrs msg style
- _ -> do hPutChar stderr '\n'
- printErrs (mkLocMessage severity srcSpan msg) style
- -- careful (#2302): printErrs prints in UTF-8, whereas
- -- converting to string first and using hPutStr would
- -- just emit the low 8 bits of each unicode char.
+ SevInfo -> printErrs msg style
+ SevFatal -> printErrs msg style
+ _ -> do hPutChar stderr '\n'
+ printErrs (mkLocMessage severity srcSpan msg) style
+ -- careful (#2302): printErrs prints in UTF-8,
+ -- whereas converting to string first and using
+ -- hPutStr would just emit the low 8 bits of
+ -- each unicode char.
where printSDoc = defaultLogActionHPrintDoc dflags stdout
printErrs = defaultLogActionHPrintDoc dflags stderr
putStrSDoc = defaultLogActionHPutStrDoc dflags stdout
More information about the ghc-commits
mailing list