| 1567 | } |
| 1568 | |
| 1569 | static int dfhack_event_index(lua_State *L) |
| 1570 | { |
| 1571 | luaL_checktype(L, 1, LUA_TUSERDATA); |
| 1572 | lua_getuservalue(L, 1); |
| 1573 | lua_pushvalue(L, 2); |
| 1574 | lua_rawget(L, -2); |
| 1575 | return 1; |
| 1576 | } |
| 1577 | |
| 1578 | static int dfhack_event_next(lua_State *L) |
| 1579 | { |
nothing calls this directly
no test coverage detected