diff options
author | simonmar <unknown> | 2002-04-26 11:18:57 +0000 |
---|---|---|
committer | simonmar <unknown> | 2002-04-26 11:18:57 +0000 |
commit | 31c53d79c85274012725480b8d78d341f3affe06 (patch) | |
tree | 6c005e5816372d8a6455713debe6b3f0290ecf8c /src/HaddockDB.hs | |
parent | bbd5fbab2ffebe759f20765a4dbd519b2d1381d8 (diff) |
[haddock @ 2002-04-26 11:18:56 by simonmar]
- support for fundeps (partially contributed by Brett Letner - thanks
Brett).
- make it build with GHC 4.08.2
Diffstat (limited to 'src/HaddockDB.hs')
-rw-r--r-- | src/HaddockDB.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HaddockDB.hs b/src/HaddockDB.hs index 446bce1d..80bc1b7c 100644 --- a/src/HaddockDB.hs +++ b/src/HaddockDB.hs @@ -70,7 +70,7 @@ ppIfaces mods ++ map ppHsName args) <+> vcat (zipWith (<+>) (equals : repeat (char '|')) (map ppHsConstr cons)) - do_decl (HsClassDecl loc ty decl) + do_decl (HsClassDecl loc ty fds decl) = hsep [text "class", ppHsType ty] do_decl decl = empty |