| 343 | |
| 344 | |
| 345 | static void utf8esc (LexState *ls) { |
| 346 | char buff[UTF8BUFFSZ]; |
| 347 | int n = luaO_utf8esc(buff, readutf8esc(ls)); |
| 348 | for (; n > 0; n--) /* add 'buff' to string */ |
| 349 | save(ls, buff[UTF8BUFFSZ - n]); |
| 350 | } |
| 351 | |
| 352 | |
| 353 | static int readdecesc (LexState *ls) { |
no test coverage detected