simonmar 2005/03/31 02:16:47 PST
Modified files:
ghc/compiler/basicTypes DataCon.lhs Demand.lhs MkId.lhs
RdrName.lhs
ghc/compiler/cmm PprC.hs PprCmm.hs
ghc/compiler/codeGen Bitmap.hs CgBindery.lhs CgCase.lhs
CgClosure.lhs CgHeapery.lhs CgInfoTbls.hs
CgPrimOp.hs CgTailCall.lhs CodeGen.lhs
SMRep.lhs
ghc/compiler/coreSyn CoreFVs.lhs CoreLint.lhs CoreUnfold.lhs
CoreUtils.lhs
ghc/compiler/deSugar Check.lhs DsExpr.lhs DsMeta.hs
DsUtils.lhs MatchLit.lhs
ghc/compiler/ghci ByteCodeGen.lhs ByteCodeItbls.lhs
ghc/compiler/hsSyn HsBinds.lhs HsDecls.lhs HsExpr.lhs
HsPat.lhs HsTypes.lhs
ghc/compiler/iface LoadIface.lhs
ghc/compiler/ilxGen IlxGen.lhs
ghc/compiler/javaGen Java.lhs JavaGen.lhs
ghc/compiler/main DriverPhases.hs DriverPipeline.hs
DynFlags.hs ErrUtils.lhs GHC.hs
HscMain.lhs HscTypes.lhs Packages.lhs
SysTools.lhs
ghc/compiler/nativeGen MachCodeGen.hs MachInstrs.hs
MachRegs.lhs PositionIndependentCode.hs
ghc/compiler/ndpFlatten FlattenInfo.hs FlattenMonad.hs
Flattening.hs NDPCoreUtils.hs
ghc/compiler/parser Ctype.lhs Lexer.x RdrHsSyn.lhs
ghc/compiler/prelude PrelInfo.lhs PrelNames.lhs TysWiredIn.lhs
ghc/compiler/rename RnEnv.lhs RnNames.lhs
ghc/compiler/simplCore SATMonad.lhs
ghc/compiler/simplStg SimplStg.lhs
ghc/compiler/specialise Specialise.lhs
ghc/compiler/stgSyn StgLint.lhs StgSyn.lhs
ghc/compiler/stranal DmdAnal.lhs SaLib.lhs WwLib.lhs
ghc/compiler/typecheck Inst.lhs TcArrows.lhs TcEnv.lhs
TcGenDeriv.lhs TcHsSyn.lhs TcHsType.lhs
TcRnDriver.lhs TcRnMonad.lhs
TcRules.lhs TcSimplify.lhs TcSplice.lhs
ghc/compiler/types Kind.lhs TyCon.lhs Type.lhs TypeRep.lhs
ghc/compiler/utils FastString.lhs FiniteMap.lhs Panic.lhs
StringBuffer.lhs UniqFM.lhs
Log:
Tweaks to get the GHC sources through Haddock. Doesn't quite work
yet, because Haddock complains about the recursive modules. Haddock
needs to understand SOURCE imports (it can probably just ignore them
as a first attempt).
Revision Changes Path
1.50 +1 -1 fptools/ghc/compiler/basicTypes/DataCon.lhs
1.18 +1 -1 fptools/ghc/compiler/basicTypes/Demand.lhs
1.122 +1 -1 fptools/ghc/compiler/basicTypes/MkId.lhs
1.36 +1 -1 fptools/ghc/compiler/basicTypes/RdrName.lhs
1.15 +2 -2 fptools/ghc/compiler/cmm/PprC.hs
1.7 +1 -1 fptools/ghc/compiler/cmm/PprCmm.hs
1.3 +2 -2 fptools/ghc/compiler/codeGen/Bitmap.hs
1.56 +1 -1 fptools/ghc/compiler/codeGen/CgBindery.lhs
1.74 +4 -4 fptools/ghc/compiler/codeGen/CgCase.lhs
1.68 +2 -2 fptools/ghc/compiler/codeGen/CgClosure.lhs
1.45 +4 -4 fptools/ghc/compiler/codeGen/CgHeapery.lhs
1.10 +3 -3 fptools/ghc/compiler/codeGen/CgInfoTbls.hs
1.5 +10 -10 fptools/ghc/compiler/codeGen/CgPrimOp.hs
1.42 +3 -3 fptools/ghc/compiler/codeGen/CgTailCall.lhs
1.66 +1 -1 fptools/ghc/compiler/codeGen/CodeGen.lhs
1.24 +2 -2 fptools/ghc/compiler/codeGen/SMRep.lhs
1.23 +2 -2 fptools/ghc/compiler/coreSyn/CoreFVs.lhs
1.90 +2 -2 fptools/ghc/compiler/coreSyn/CoreLint.lhs
1.98 +4 -4 fptools/ghc/compiler/coreSyn/CoreUnfold.lhs
1.133 +1 -1 fptools/ghc/compiler/coreSyn/CoreUtils.lhs
1.39 +1 -1 fptools/ghc/compiler/deSugar/Check.lhs
1.112 +1 -1 fptools/ghc/compiler/deSugar/DsExpr.lhs
1.69 +2 -2 fptools/ghc/compiler/deSugar/DsMeta.hs
1.81 +2 -2 fptools/ghc/compiler/deSugar/DsUtils.lhs
1.39 +2 -2 fptools/ghc/compiler/deSugar/MatchLit.lhs
1.109 +2 -2 fptools/ghc/compiler/ghci/ByteCodeGen.lhs
1.17 +2 -1 fptools/ghc/compiler/ghci/ByteCodeItbls.lhs
1.78 +1 -1 fptools/ghc/compiler/hsSyn/HsBinds.lhs
1.109 +4 -4 fptools/ghc/compiler/hsSyn/HsDecls.lhs
1.96 +4 -4 fptools/ghc/compiler/hsSyn/HsExpr.lhs
1.46 +1 -1 fptools/ghc/compiler/hsSyn/HsPat.lhs
1.83 +1 -1 fptools/ghc/compiler/hsSyn/HsTypes.lhs
1.30 +1 -1 fptools/ghc/compiler/iface/LoadIface.lhs
1.35 +1 -1 fptools/ghc/compiler/ilxGen/IlxGen.lhs
1.9 +2 -2 fptools/ghc/compiler/javaGen/Java.lhs
1.21 +1 -1 fptools/ghc/compiler/javaGen/JavaGen.lhs
1.36 +1 -1 fptools/ghc/compiler/main/DriverPhases.hs
1.195 +0 -1 fptools/ghc/compiler/main/DriverPipeline.hs
1.4 +2 -2 fptools/ghc/compiler/main/DynFlags.hs
1.54 +1 -1 fptools/ghc/compiler/main/ErrUtils.lhs
1.5 +3 -3 fptools/ghc/compiler/main/GHC.hs
1.208 +24 -24 fptools/ghc/compiler/main/HscMain.lhs
1.130 +2 -2 fptools/ghc/compiler/main/HscTypes.lhs
1.33 +0 -1 fptools/ghc/compiler/main/Packages.lhs
1.128 +2 -2 fptools/ghc/compiler/main/SysTools.lhs
1.7 +2 -2 fptools/ghc/compiler/nativeGen/MachCodeGen.hs
1.6 +7 -7 fptools/ghc/compiler/nativeGen/MachInstrs.hs
1.53 +1 -1 fptools/ghc/compiler/nativeGen/MachRegs.lhs
1.11 +2 -2 fptools/ghc/compiler/nativeGen/PositionIndependentCode.hs
1.5 +1 -1 fptools/ghc/compiler/ndpFlatten/FlattenInfo.hs
1.11 +15 -15 fptools/ghc/compiler/ndpFlatten/FlattenMonad.hs
1.13 +1 -1 fptools/ghc/compiler/ndpFlatten/Flattening.hs
1.6 +2 -2 fptools/ghc/compiler/ndpFlatten/NDPCoreUtils.hs
1.11 +7 -7 fptools/ghc/compiler/parser/Ctype.lhs
1.28 +15 -15 fptools/ghc/compiler/parser/Lexer.x
1.84 +18 -18 fptools/ghc/compiler/parser/RdrHsSyn.lhs
1.92 +1 -0 fptools/ghc/compiler/prelude/PrelInfo.lhs
1.96 +1 -1 fptools/ghc/compiler/prelude/PrelNames.lhs
1.95 +2 -2 fptools/ghc/compiler/prelude/TysWiredIn.lhs
1.191 +1 -1 fptools/ghc/compiler/rename/RnEnv.lhs
1.188 +2 -2 fptools/ghc/compiler/rename/RnNames.lhs
1.17 +1 -1 fptools/ghc/compiler/simplCore/SATMonad.lhs
1.46 +1 -1 fptools/ghc/compiler/simplStg/SimplStg.lhs
1.94 +1 -1 fptools/ghc/compiler/specialise/Specialise.lhs
1.47 +1 -1 fptools/ghc/compiler/stgSyn/StgLint.lhs
1.48 +2 -2 fptools/ghc/compiler/stgSyn/StgSyn.lhs
1.54 +1 -1 fptools/ghc/compiler/stranal/DmdAnal.lhs
1.27 +1 -1 fptools/ghc/compiler/stranal/SaLib.lhs
1.72 +1 -1 fptools/ghc/compiler/stranal/WwLib.lhs
1.150 +1 -1 fptools/ghc/compiler/typecheck/Inst.lhs
1.12 +1 -1 fptools/ghc/compiler/typecheck/TcArrows.lhs
1.141 +1 -1 fptools/ghc/compiler/typecheck/TcEnv.lhs
1.115 +2 -2 fptools/ghc/compiler/typecheck/TcGenDeriv.lhs
1.104 +2 -2 fptools/ghc/compiler/typecheck/TcHsSyn.lhs
1.24 +1 -1 fptools/ghc/compiler/typecheck/TcHsType.lhs
1.101 +1 -1 fptools/ghc/compiler/typecheck/TcRnDriver.lhs
1.47 +1 -0 fptools/ghc/compiler/typecheck/TcRnMonad.lhs
1.50 +1 -1 fptools/ghc/compiler/typecheck/TcRules.lhs
1.154 +1 -1 fptools/ghc/compiler/typecheck/TcSimplify.lhs
1.52 +4 -4 fptools/ghc/compiler/typecheck/TcSplice.lhs
1.19 +2 -2 fptools/ghc/compiler/types/Kind.lhs
1.79 +3 -3 fptools/ghc/compiler/types/TyCon.lhs
1.136 +1 -1 fptools/ghc/compiler/types/Type.lhs
1.42 +1 -1 fptools/ghc/compiler/types/TypeRep.lhs
1.50 +2 -0 fptools/ghc/compiler/utils/FastString.lhs
1.35 +1 -1 fptools/ghc/compiler/utils/FiniteMap.lhs
1.32 +1 -1 fptools/ghc/compiler/utils/Panic.lhs
1.67 +4 -4 fptools/ghc/compiler/utils/StringBuffer.lhs
1.40 +4 -4 fptools/ghc/compiler/utils/UniqFM.lhs
_______________________________________________
Cvs-ghc mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/cvs-ghc