diff options
-rw-r--r-- | src/Text/Pandoc/Readers/Man.hs | 2 |
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 |