Skip to content

Commit

Permalink
Regenerate IR parser
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Jul 22, 2024
1 parent 8fb33ce commit 1aba19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ir_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ size_t yy_escape(char *buf, unsigned char ch)
case '\"': buf[0] = '\\'; buf[1] = '\"'; return 2;
case '\a': buf[0] = '\\'; buf[1] = '\a'; return 2;
case '\b': buf[0] = '\\'; buf[1] = '\b'; return 2;
case 27: buf[0] = '\\'; buf[1] = '\e'; return 2;
case 27: buf[0] = '\\'; buf[1] = 27; return 2;
case '\f': buf[0] = '\\'; buf[1] = '\f'; return 2;
case '\n': buf[0] = '\\'; buf[1] = '\n'; return 2;
case '\r': buf[0] = '\\'; buf[1] = '\r'; return 2;
Expand Down

0 comments on commit 1aba19a

Please sign in to comment.