diff options
author | simonmar <unknown> | 2003-07-28 14:32:43 +0000 |
---|---|---|
committer | simonmar <unknown> | 2003-07-28 14:32:43 +0000 |
commit | 6cfeee53431768f8d8326d6c645d6ccda198bde0 (patch) | |
tree | 7bcf9f5603882ccd49d967a9709a32cfd1e8ea21 /src/HaddockHtml.hs | |
parent | dbb776cd407bd7237fb81901d6bf405851b46754 (diff) |
[haddock @ 2003-07-28 14:32:42 by simonmar]
Update to avoid using hslibs with GHC >= 5.04
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r-- | src/HaddockHtml.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs index 44663821..7275e948 100644 --- a/src/HaddockHtml.hs +++ b/src/HaddockHtml.hs @@ -16,11 +16,17 @@ import HsSyn import IO import Maybe ( fromJust, isJust ) -import FiniteMap import List ( sortBy ) import Char ( toUpper, toLower, isAlpha, ord ) import Monad ( when, unless ) + +#if __GLASGOW_HASKELL__ < 503 +import FiniteMap import URI ( escapeString, unreserved ) +#else +import Data.FiniteMap +import Network.URI ( escapeString, unreserved ) +#endif import Html import qualified Html |