| 153 | |
| 154 | |
| 155 | static void pushutfchar (lua_State *L, int arg) { |
| 156 | lua_Unsigned code = (lua_Unsigned)luaL_checkinteger(L, arg); |
| 157 | luaL_argcheck(L, code <= MAXUTF, arg, "value out of range"); |
| 158 | lua_pushfstring(L, "%U", (long)code); |
| 159 | } |
| 160 | |
| 161 | |
| 162 | /* |
no test coverage detected