aboutsummaryrefslogtreecommitdiff
path: root/src/HaddockHtml.hs
diff options
context:
space:
mode:
authordavve <davve@dtek.chalmers.se>2007-02-16 12:09:49 +0000
committerdavve <davve@dtek.chalmers.se>2007-02-16 12:09:49 +0000
commit2ce8e4cf32d9b0d4fc762f160e1f97addbae60f4 (patch)
treea83cc93d13beb42469d38b2e6ff9f4af6b336d7a /src/HaddockHtml.hs
parent97f9e913b65736bae23d0d9cedd7631457557e99 (diff)
Add the DocOptions change
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r--src/HaddockHtml.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs
index fafbe3f5..b42cfe6b 100644
--- a/src/HaddockHtml.hs
+++ b/src/HaddockHtml.hs
@@ -68,7 +68,7 @@ ppHtml doctitle maybe_package hmods odir prologue maybe_html_help_format
maybe_contents_url maybe_index_url = do
let
visible_hmods = filter visible hmods
- visible i = DocOptHide `notElem` hmod_options i
+ visible i = OptHide `notElem` hmod_options i
when (not (isJust maybe_contents_url)) $
ppHtmlContents odir doctitle maybe_package
@@ -99,7 +99,7 @@ ppHtmlHelpFiles
ppHtmlHelpFiles doctitle maybe_package hmods odir maybe_html_help_format pkg_paths = do
let
visible_hmods = filter visible hmods
- visible i = DocOptHide `notElem` hmod_options i
+ visible i = OptHide `notElem` hmod_options i
-- Generate index and contents page for Html Help if requested
case maybe_html_help_format of