diff options
author | davve@dtek.chalmers.se <David Waern> | 2007-03-25 03:21:48 +0000 |
---|---|---|
committer | davve@dtek.chalmers.se <David Waern> | 2007-03-25 03:21:48 +0000 |
commit | f696b4bc488e7a574ff5b3e99becef5fcdb3a23f (patch) | |
tree | 9fd897c14ae6eda45935d983707722e68aacbd5e | |
parent | 11ebf08d5ef30375ba5585b6079f696d49402c3f (diff) |
Add missing stuff to API
-rw-r--r-- | haddock-ghc.cabal | 4 | ||||
-rw-r--r-- | src/Distribution/Haddock.hs | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/haddock-ghc.cabal b/haddock-ghc.cabal index 0df410d1..c21e0f2d 100644 --- a/haddock-ghc.cabal +++ b/haddock-ghc.cabal @@ -13,6 +13,10 @@ ghc-options: -fglasgow-exts hs-source-dirs: src exposed-modules: Distribution.Haddock +other-modules: + Haddock.InterfaceFile + Haddock.Exception + Haddock.Types data-files: html/haddock-DEBUG.css html/haddock.css diff --git a/src/Distribution/Haddock.hs b/src/Distribution/Haddock.hs index c6e2dd3b..bf57605e 100644 --- a/src/Distribution/Haddock.hs +++ b/src/Distribution/Haddock.hs @@ -1,7 +1,6 @@ module Distribution.Haddock ( readInterfaceFile, - H.writeInterfaceFile, - H.InterfaceFile + H.InterfaceFile(..) ) where import Haddock.Exception |