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