| 144 | |
| 145 | |
| 146 | static void pushutfchar (lua_State *L, int arg) { |
| 147 | lua_Unsigned code = (lua_Unsigned)luaL_checkinteger(L, arg); |
| 148 | luaL_argcheck(L, code <= MAXUTF, arg, "value out of range"); |
| 149 | lua_pushfstring(L, "%U", (long)code); |
| 150 | } |
| 151 | |
| 152 | |
| 153 | /* |
no test coverage detected