diff options
author | panne <unknown> | 2005-01-16 14:37:10 +0000 |
---|---|---|
committer | panne <unknown> | 2005-01-16 14:37:10 +0000 |
commit | 951d840870e67b452387b35c72d235511ed9163c (patch) | |
tree | c62b706cbe5de938a995073cc15e8e463b581fce /src/HaddockHH.hs | |
parent | dae3cc3eb74cfe7e59b18242897584664078233f (diff) |
[haddock @ 2005-01-16 14:37:10 by panne]
Refactored Text.PrettyPrint legacy hell into a separate module.
Diffstat (limited to 'src/HaddockHH.hs')
-rw-r--r-- | src/HaddockHH.hs | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/HaddockHH.hs b/src/HaddockHH.hs index fb63c872..40d74967 100644 --- a/src/HaddockHH.hs +++ b/src/HaddockHH.hs @@ -1,20 +1,17 @@ module HaddockHH(ppHHContents, ppHHIndex, ppHHProject) where +import HaddockModuleTree +import HaddockTypes +import HaddockUtil import HsSyn hiding(Doc) +import qualified Map +import PrettyPrint -#if __GLASGOW_HASKELL__ < 503 -import Pretty -#else -import Text.PrettyPrint +#if __GLASGOW_HASKELL__ >= 503 import Data.Char ( toUpper ) #endif import Maybe ( fromMaybe ) -import HaddockModuleTree -import HaddockUtil -import HaddockTypes -import qualified Map - ppHHContents :: FilePath -> String -> Maybe String -> [ModuleTree] -> IO () ppHHContents odir doctitle maybe_package tree = do |