aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Readers/Man.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Man.hs b/src/Text/Pandoc/Readers/Man.hs
index 67639bee4..665679c4d 100644
--- a/src/Text/Pandoc/Readers/Man.hs
+++ b/src/Text/Pandoc/Readers/Man.hs
@@ -142,7 +142,7 @@ parseTable = do
then return $ Right mempty
else lift $ readWithMTokens tcell st ts'
case res of
- Left e -> throwError e
+ Left _ -> fail "Could not parse table cell"
Right x -> return x
isHrule :: TableRow -> Bool