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