| 1537 | } |
| 1538 | |
| 1539 | void DFHack::Lua::Event::SetPrivateCallback(lua_State *L, int event) |
| 1540 | { |
| 1541 | lua_getuservalue(L, event); |
| 1542 | lua_swap(L); |
| 1543 | lua_rawsetp(L, -2, NULL); |
| 1544 | lua_pop(L, 1); |
| 1545 | } |
| 1546 | |
| 1547 | static int dfhack_event_new(lua_State *L) |
| 1548 | { |
nothing calls this directly
no test coverage detected