commit a8cf965dc00ba966616b9b85995c47aa332333d3 parent 8124ccbf00d7f868bcf9773b8e0fd543b65694de Author: William Casarin <jb55@jb55.com> Date: Tue, 19 Dec 2017 07:44:31 -0800 strings: fix bug in string lexer Diffstat:
M | lexer.l | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lexer.l b/lexer.l @@ -23,7 +23,7 @@ [oO][pP]_ {} -\".*\" { +\"[^\"]*\" { char *t = yytext + 1; t[strlen(t) - 1] = '\0'; yylval.str = t;