diff options
| author | David Waern <david.waern@gmail.com> | 2010-01-22 23:24:47 +0000 | 
|---|---|---|
| committer | David Waern <david.waern@gmail.com> | 2010-01-22 23:24:47 +0000 | 
| commit | ccfaefee2d257de591d4f22e696a0e6bdc0957b8 (patch) | |
| tree | 431b64b9b00e6f9c91732e04a6daba4e15746d8e /src/Haddock/Backends | |
| parent | 3badcc6c7bf703ec1e8f638ee2119b739497d884 (diff) | |
Put parenthesis around type signature arguments of function type
Diffstat (limited to 'src/Haddock/Backends')
| -rw-r--r-- | src/Haddock/Backends/Html.hs | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Haddock/Backends/Html.hs b/src/Haddock/Backends/Html.hs index 1a132c5b..05cddcac 100644 --- a/src/Haddock/Backends/Html.hs +++ b/src/Haddock/Backends/Html.hs @@ -867,7 +867,7 @@ ppTypeOrFunSig summary links loc docname typ (doc, argDocs) (pref1, pref2, sep)        | otherwise        = do_largs n leader ltype      do_args n leader (HsFunTy lt r) -      = (argBox (leader <+> ppLType unicode lt) <-> rdocBox (argDocHtml n)) +      = (argBox (leader <+> ppLFunLhType unicode lt) <-> rdocBox (argDocHtml n))            </> do_largs (n+1) (arrow unicode) r      do_args n leader t        = argBox (leader <+> ppType unicode t) <-> rdocBox (argDocHtml n) @@ -1565,14 +1565,16 @@ maybeParen ctxt_prec op_prec p | ctxt_prec >= op_prec = parens p                                 | otherwise            = p -ppLType, ppLParendType :: Bool -> Located (HsType DocName) -> Html +ppLType, ppLParendType, ppLFunLhType :: Bool -> Located (HsType DocName) -> Html  ppLType       unicode y = ppType unicode (unLoc y)  ppLParendType unicode y = ppParendType unicode (unLoc y)  +ppLFunLhType  unicode y = ppFunLhType unicode (unLoc y) -ppType, ppParendType :: Bool -> HsType DocName -> Html +ppType, ppParendType, ppFunLhType :: Bool -> HsType DocName -> Html  ppType       unicode ty = ppr_mono_ty pREC_TOP ty unicode   ppParendType unicode ty = ppr_mono_ty pREC_CON ty unicode  +ppFunLhType  unicode ty = ppr_mono_ty pREC_FUN ty unicode  -- Drop top-level for-all type variables in user style  | 
