diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-03-17 17:26:11 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-05-01 10:37:39 -0400 |
commit | b3df9e780fb2f5658412c644849cd0f1e6f50331 (patch) | |
tree | c5a45d8b043515e385a43e0c12172d6d74999ff5 /compiler/GHC/Iface/Binary.hs | |
parent | f8386c7b6a9d26bc5fd2c1d74d944c8df6337690 (diff) | |
download | haskell-b3df9e780fb2f5658412c644849cd0f1e6f50331.tar.gz |
Remove PprStyle param of logging actions
Use `withPprStyle` instead to apply a specific style to a SDoc.
Diffstat (limited to 'compiler/GHC/Iface/Binary.hs')
-rw-r--r-- | compiler/GHC/Iface/Binary.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/GHC/Iface/Binary.hs b/compiler/GHC/Iface/Binary.hs index 49e3b00e50..a14cb17e04 100644 --- a/compiler/GHC/Iface/Binary.hs +++ b/compiler/GHC/Iface/Binary.hs @@ -101,8 +101,7 @@ readBinIface_ dflags checkHiWay traceBinIFaceReading hi_path ncu = do NoReason SevOutput noSrcSpan - defaultDumpStyle - sd + $ withPprStyle defaultDumpStyle sd QuietBinIFaceReading -> \_ -> return () wantedGot :: String -> a -> a -> (a -> SDoc) -> IO () |