| 381 | |
| 382 | |
| 383 | static void utf8esc (LexState *ls) { |
| 384 | char buff[UTF8BUFFSZ]; |
| 385 | int n = luaO_utf8esc(buff, readutf8esc(ls)); |
| 386 | for (; n > 0; n--) /* add 'buff' to string */ |
| 387 | save(ls, buff[UTF8BUFFSZ - n]); |
| 388 | } |
| 389 | |
| 390 | |
| 391 | static int readdecesc (LexState *ls) { |
no test coverage detected