aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/InterfaceFile.hs
diff options
context:
space:
mode:
authorDavid Terei <davidterei@gmail.com>2011-08-18 14:27:53 -0700
committerDavid Terei <davidterei@gmail.com>2011-10-12 14:06:58 -0700
commit0c16f3b04aadd0cc22fedbf123bae6369d1c445e (patch)
tree2c3b8045789334e9ac12b55a9f5de1d1c8dd8f7d /src/Haddock/InterfaceFile.hs
parent2eb873b5191eee0ffb5094068ab8f0d580453299 (diff)
Add safe haskell indication to haddock output
Diffstat (limited to 'src/Haddock/InterfaceFile.hs')
-rw-r--r--src/Haddock/InterfaceFile.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Haddock/InterfaceFile.hs b/src/Haddock/InterfaceFile.hs
index d337eefe..33f28d68 100644
--- a/src/Haddock/InterfaceFile.hs
+++ b/src/Haddock/InterfaceFile.hs
@@ -511,13 +511,15 @@ instance Binary name => Binary (HaddockModInfo name) where
put_ bh (hmi_portability hmi)
put_ bh (hmi_stability hmi)
put_ bh (hmi_maintainer hmi)
+ put_ bh (hmi_safety hmi)
get bh = do
descr <- get bh
porta <- get bh
stabi <- get bh
maint <- get bh
- return (HaddockModInfo descr porta stabi maint)
+ safet <- get bh
+ return (HaddockModInfo descr porta stabi maint safet)
instance Binary DocName where