summaryrefslogtreecommitdiff
path: root/compiler/main/DriverMkDepend.hs
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2009-10-29 12:01:55 +0000
committersimonpj@microsoft.com <unknown>2009-10-29 12:01:55 +0000
commitf96194794bf099020706c3816d1a5678b40addbb (patch)
tree7290d705708527865d9d69056d40096e2389db45 /compiler/main/DriverMkDepend.hs
parent016f155090557cd63f377b3ced95453bffd87d60 (diff)
downloadhaskell-f96194794bf099020706c3816d1a5678b40addbb.tar.gz
Add Outputable.blankLine and use it
Diffstat (limited to 'compiler/main/DriverMkDepend.hs')
-rw-r--r--compiler/main/DriverMkDepend.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/DriverMkDepend.hs b/compiler/main/DriverMkDepend.hs
index f1f4770623..656ced2177 100644
--- a/compiler/main/DriverMkDepend.hs
+++ b/compiler/main/DriverMkDepend.hs
@@ -352,7 +352,7 @@ dumpModCycles dflags mod_summaries
cycles = [ c | CyclicSCC c <- GHC.topSortModuleGraph True mod_summaries Nothing ]
pp_cycles = vcat [ (ptext (sLit "---------- Cycle") <+> int n <+> ptext (sLit "----------"))
- $$ pprCycle c $$ text ""
+ $$ pprCycle c $$ blankLine
| (n,c) <- [1..] `zip` cycles ]
pprCycle :: [ModSummary] -> SDoc