aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Parser.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Parser.hs')
-rw-r--r--src/Parser.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parser.hs b/src/Parser.hs
index 83f03aa..01dda6e 100644
--- a/src/Parser.hs
+++ b/src/Parser.hs
@@ -426,7 +426,7 @@ parseCommandBlock = do
parseDefBlock :: Int -> Parser Instruction
parseDefBlock lvl =
- sepEndBy parseComment newline *> string (replicate lvl '\t') *> try
+ sepEndBy (try parseComment) newline *> string (replicate lvl '\t') *> try
(parseDefine lvl)
parseBlock :: Int -> Parser Instruction