| 301 | |
| 302 | |
| 303 | static void esccheck (LexState *ls, int c, const char *msg) { |
| 304 | if (!c) { |
| 305 | if (ls->current != EOZ) |
| 306 | save_and_next(ls); /* add current to buffer for error message */ |
| 307 | lexerror(ls, msg, TK_STRING); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | |
| 312 | static int gethexa (LexState *ls) { |
no test coverage detected