diff options
author | John MacFarlane <jgm@berkeley.edu> | 2010-07-04 23:09:33 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2010-07-05 00:06:27 -0700 |
commit | efd7167ace71fe4f244054f71bf96a84fbea20f9 (patch) | |
tree | ebf74ae2bac4c709b4d1c3d6d5aaeeeccf57747c | |
parent | 6a7b16eb4d94683d1e3844b6296e5743e72deccc (diff) | |
download | pandoc-efd7167ace71fe4f244054f71bf96a84fbea20f9.tar.gz |
Made -Wall clean.
-rw-r--r-- | src/Text/Pandoc/Writers/EPUB.hs | 2 |
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 |