aboutsummaryrefslogtreecommitdiff
path: root/asm.peg
diff options
context:
space:
mode:
Diffstat (limited to 'asm.peg')
-rw-r--r--asm.peg2
1 files changed, 1 insertions, 1 deletions
diff --git a/asm.peg b/asm.peg
index c5326e4..03d5ba0 100644
--- a/asm.peg
+++ b/asm.peg
@@ -1,6 +1,6 @@
line =
- s:stmt (eol | !. ) { yy->v = s; }
+ ws? s:stmt (eol | !. ) { yy->v = s; }
| eol { yy->v.kind = ASM_BLANK; }
| . { yy->v.kind = ASM_SYNTAX_ERROR; }