| 1592 | } |
| 1593 | |
| 1594 | static int dfhack_event_pairs(lua_State *L) |
| 1595 | { |
| 1596 | luaL_checktype(L, 1, LUA_TUSERDATA); |
| 1597 | lua_pushcfunction(L, dfhack_event_next); |
| 1598 | lua_pushvalue(L, 1); |
| 1599 | lua_pushnil(L); |
| 1600 | return 3; |
| 1601 | } |
| 1602 | |
| 1603 | static int dfhack_event_newindex(lua_State *L) |
| 1604 | { |
nothing calls this directly
no test coverage detected