| 330 | |
| 331 | |
| 332 | static int readhexaesc (LexState *ls) { |
| 333 | int r = gethexa(ls); |
| 334 | r = (r << 4) + gethexa(ls); |
| 335 | luaZ_buffremove(ls->buff, 2); /* remove saved chars from buffer */ |
| 336 | return r; |
| 337 | } |
| 338 | |
| 339 | |
| 340 | static unsigned long readutf8esc (LexState *ls) { |
no test coverage detected