summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-07-04 23:09:33 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2010-07-05 00:06:27 -0700
commitefd7167ace71fe4f244054f71bf96a84fbea20f9 (patch)
treeebf74ae2bac4c709b4d1c3d6d5aaeeeccf57747c /src/Text/Pandoc/Writers
parent6a7b16eb4d94683d1e3844b6296e5743e72deccc (diff)
Made -Wall clean.
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r--src/Text/Pandoc/Writers/EPUB.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/EPUB.hs b/src/Text/Pandoc/Writers/EPUB.hs
index 2e8f37091..a96f0bda3 100644
--- a/src/Text/Pandoc/Writers/EPUB.hs
+++ b/src/Text/Pandoc/Writers/EPUB.hs
@@ -215,7 +215,7 @@ transformInlines (MathML _) _ _ (x@(Math _ _) : xs) = do
return $ HtmlInline result : xs
transformInlines _ _ _ (HtmlInline _ : xs) = return $ Str "" : xs
transformInlines _ _ _ (Link lab (_,_) : xs) = return $ lab ++ xs
-transformInlines mathmethod sourceDir picsRef xs = return xs
+transformInlines _ _ _ xs = return xs
transformBlock :: Block -> Block
transformBlock (RawHtml _) = Null