| 126 | |
| 127 | |
| 128 | static void pushutfchar (lua_State *L, int arg) { |
| 129 | lua_Integer code = luaL_checkinteger(L, arg); |
| 130 | luaL_argcheck(L, 0 <= code && code <= MAXUNICODE, arg, "value out of range"); |
| 131 | lua_pushfstring(L, "%U", (long)code); |
| 132 | } |
| 133 | |
| 134 | |
| 135 | /* |
no test coverage detected