| 317 | |
| 318 | |
| 319 | static void esccheck (LexState *ls, int c, const char *msg) { |
| 320 | if (!c) { |
| 321 | if (ls->current != EOZ) |
| 322 | save_and_next(ls); /* add current to buffer for error message */ |
| 323 | lexerror(ls, msg, TK_STRING); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | |
| 328 | static int gethexa (LexState *ls) { |
no test coverage detected