Merge pull request #419 from dbrotz/fix-blackslash-tab-at-eof

Handle tabs after backslash at end of file
This commit is contained in:
Eldred Habert
2019-09-23 00:05:21 +02:00
committed by GitHub
8 changed files with 54 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
m: MACRO
ENDM
m2: MACRO
m \ ENDM
m2

View File

View File

@@ -0,0 +1,8 @@
m: MACRO
ENDM
REPT 1
m ENDR
REPT 1
m \ ENDR

View File

View File

@@ -0,0 +1,7 @@
; Test that \ followed by whitespace after a macro invocation at the end of the
; file doesn't cause a segfault.
bar: MACRO
ENDM
foo bar baz\