aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends
diff options
context:
space:
mode:
authorMark Lentczner <markl@glyphic.com>2010-07-23 17:44:29 +0000
committerMark Lentczner <markl@glyphic.com>2010-07-23 17:44:29 +0000
commit1a40ad1edeafa4401b54a0035c128c994cc9137b (patch)
tree2f952807c0e2c977aab41f5e225346b1c6477b49 /src/Haddock/Backends
parente37cef7364006392a073cc4f6601078829f2dbec (diff)
rename --default-themes to --built-in-themes
Diffstat (limited to 'src/Haddock/Backends')
-rw-r--r--src/Haddock/Backends/Xhtml/Themes.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Xhtml/Themes.hs b/src/Haddock/Backends/Xhtml/Themes.hs
index 35a3986b..43339791 100644
--- a/src/Haddock/Backends/Xhtml/Themes.hs
+++ b/src/Haddock/Backends/Xhtml/Themes.hs
@@ -93,7 +93,7 @@ getThemes libDir flags =
where
themeFlag :: Flag -> IO (Either String Themes)
themeFlag (Flag_CSS path) = (liftM . liftEither) (:[]) (theme path)
- themeFlag (Flag_DefaultThemes) = retRight builtIns
+ themeFlag (Flag_BuiltInThemes) = retRight builtIns
themeFlag _ = retRight []
theme :: FilePath -> IO PossibleTheme