diff options
| author | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-05-10 11:19:47 -0400 | 
|---|---|---|
| committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2018-05-10 11:19:47 -0400 | 
| commit | 00ccfecdfedb55d44c84dfa4f0f1de90cfe6fafd (patch) | |
| tree | 613b32eab15299a764223bd787f42de404248a39 /haddock-api/src/Haddock | |
| parent | a8840a37976209c5a3c4cf929eff502cdca80ecf (diff) | |
Remove Hoogle backend hack that butchers infix datatype names
Diffstat (limited to 'haddock-api/src/Haddock')
| -rw-r--r-- | haddock-api/src/Haddock/Backends/Hoogle.hs | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/haddock-api/src/Haddock/Backends/Hoogle.hs b/haddock-api/src/Haddock/Backends/Hoogle.hs index e7ce9d30..484841ba 100644 --- a/haddock-api/src/Haddock/Backends/Hoogle.hs +++ b/haddock-api/src/Haddock/Backends/Hoogle.hs @@ -225,11 +225,10 @@ ppData dflags decl@(DataDecl { tcdDataDefn = defn }) subdocs          -- GHC gives out "data Bar =", we want to delete the equals          -- also writes data : a b, when we want data (:) a b -        showData d = unwords $ map f $ if last xs == "=" then init xs else xs +        showData d = unwords $ if last xs == "=" then init xs else xs              where                  xs = words $ out dflags d                  nam = out dflags $ tyClDeclLName d -                f w = if w == nam then operator nam else w  ppData _ _ _ = panic "ppData"  -- | for constructors, and named-fields...  | 
