diff options
author | simonpj@microsoft.com <unknown> | 2009-10-29 12:01:55 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2009-10-29 12:01:55 +0000 |
commit | f96194794bf099020706c3816d1a5678b40addbb (patch) | |
tree | 7290d705708527865d9d69056d40096e2389db45 /compiler/main/DriverMkDepend.hs | |
parent | 016f155090557cd63f377b3ced95453bffd87d60 (diff) | |
download | haskell-f96194794bf099020706c3816d1a5678b40addbb.tar.gz |
Add Outputable.blankLine and use it
Diffstat (limited to 'compiler/main/DriverMkDepend.hs')
-rw-r--r-- | compiler/main/DriverMkDepend.hs | 2 |
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 |