mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
From Lua 5.2: Change \* to \z. Reject undefined escape sequences.
This commit is contained in:
parent
9c58bd6689
commit
b261d0ec04
16
src/lj_lex.c
16
src/lj_lex.c
@ -238,9 +238,8 @@ static void read_string(LexState *ls, int delim, TValue *tv)
|
||||
lj_lex_error(ls, TK_string, LJ_ERR_XSTR);
|
||||
continue;
|
||||
case '\\': {
|
||||
int c;
|
||||
next(ls); /* Skip the '\\'. */
|
||||
switch (ls->current) {
|
||||
int c = next(ls); /* Skip the '\\'. */
|
||||
switch (c) {
|
||||
case 'a': c = '\a'; break;
|
||||
case 'b': c = '\b'; break;
|
||||
case 'f': c = '\f'; break;
|
||||
@ -260,18 +259,18 @@ static void read_string(LexState *ls, int delim, TValue *tv)
|
||||
c += 9;
|
||||
}
|
||||
break;
|
||||
case '*': /* Skip whitespace. */
|
||||
case 'z': /* Skip whitespace. */
|
||||
next(ls);
|
||||
while (lj_char_isspace(ls->current))
|
||||
if (currIsNewline(ls)) inclinenumber(ls); else next(ls);
|
||||
continue;
|
||||
case '\n': case '\r': save(ls, '\n'); inclinenumber(ls); continue;
|
||||
case '\\': case '\"': case '\'': break;
|
||||
case END_OF_STREAM: continue;
|
||||
default:
|
||||
if (!lj_char_isdigit(ls->current)) {
|
||||
save_and_next(ls); /* Handles '\\', '\"' and "\'". */
|
||||
} else { /* Decimal escape '\ddd'. */
|
||||
c = (ls->current - '0');
|
||||
if (!lj_char_isdigit(c))
|
||||
goto err_xesc;
|
||||
c -= '0'; /* Decimal escape '\ddd'. */
|
||||
if (lj_char_isdigit(next(ls))) {
|
||||
c = c*10 + (ls->current - '0');
|
||||
if (lj_char_isdigit(next(ls))) {
|
||||
@ -284,7 +283,6 @@ static void read_string(LexState *ls, int delim, TValue *tv)
|
||||
}
|
||||
}
|
||||
save(ls, c);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
save(ls, c);
|
||||
|
Loading…
Reference in New Issue
Block a user