From 64c6082c232cac10347db5a83870f5f57e7e294e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 18 Oct 2008 10:54:22 +0000 Subject: [PATCH] parse comment lines beginning with a space, as from M-; in emacs ledger-mode --- Ledger/Parse.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ledger/Parse.hs b/Ledger/Parse.hs index 4243f0319..4fdac17e3 100644 --- a/Ledger/Parse.hs +++ b/Ledger/Parse.hs @@ -191,6 +191,7 @@ blankline = commentline :: Parser String commentline = do + many spacenonewline char ';' "comment line" l <- restofline return $ ";" ++ l