Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Nov 23, 2023
1 parent 2f9b162 commit 977f9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ static int get_escape(parser *p, const char **_src, bool *error, bool number)
if (ptr)
ch = g_escapes[ptr-g_anti_escapes];
else if ((isdigit(ch) || (ch == 'x')
|| (ch == 'u') || (ch == 'U')
|| (((ch == 'u') || (ch == 'U')) && (!p->flags.not_strict_iso || p->flags.json))
)
&& !number) {
bool unicode = false;
Expand Down

0 comments on commit 977f9e0

Please sign in to comment.