diff options
Diffstat (limited to 'src/Parser.hs')
-rw-r--r-- | src/Parser.hs | 2 |
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 |