| 359 | |
| 360 | |
| 361 | static void utf8esc (LexState *ls) { |
| 362 | char buff[UTF8BUFFSZ]; |
| 363 | int n = luaO_utf8esc(buff, readutf8esc(ls)); |
| 364 | for (; n > 0; n--) /* add 'buff' to string */ |
| 365 | save(ls, buff[UTF8BUFFSZ - n]); |
| 366 | } |
| 367 | |
| 368 | |
| 369 | static int readdecesc (LexState *ls) { |
no test coverage detected