| 320 | |
| 321 | |
| 322 | static int readhexaesc (LexState *ls) { |
| 323 | int r = gethexa(ls); |
| 324 | r = (r << 4) + gethexa(ls); |
| 325 | luaZ_buffremove(ls->buff, 2); /* remove saved chars from buffer */ |
| 326 | return r; |
| 327 | } |
| 328 | |
| 329 | |
| 330 | static unsigned long readutf8esc (LexState *ls) { |
no test coverage detected