From be94326a03e4af0f16e3630bb7a0c852638440a3 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 12 Aug 2010 14:37:11 +0000 Subject: [PATCH] fix a build error with parsec 3 (#22) --- hledger-lib/Hledger/Data/Utils.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/hledger-lib/Hledger/Data/Utils.hs b/hledger-lib/Hledger/Data/Utils.hs index a3ef1c5c6..54275606a 100644 --- a/hledger-lib/Hledger/Data/Utils.hs +++ b/hledger-lib/Hledger/Data/Utils.hs @@ -282,6 +282,7 @@ tracewith f e = trace (f e) e -- parsing +choice' :: [GenParser tok st a] -> GenParser tok st a choice' = choice . map Text.ParserCombinators.Parsec.try parsewith :: Parser a -> String -> Either ParseError a