append_yylval_tzString should always evaluate its argument

Fixes #762
This commit is contained in:
Rangi
2021-02-23 23:25:58 -05:00
committed by Rangi
parent 1f579deaff
commit 63d15ac8c9
4 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
println """This paragraph has exactly 257--that's two hundred and
fifty-seven--characters altogether. That's just enough for its last
two characters to be truncated by rgbasm's lexer, since it can't
handle more than 255-character strings. The final two won't print: !?"""
mac: MACRO
println "\1" ; x1
println "\1\1\1\1\1\1" ; x6
ENDM
mac Hello! ; 6x6 = 36
mac This sentence spans forty-three characters. ; 43x6 = 258