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