| 1409 | } |
| 1410 | |
| 1411 | static int lua_dfhack_with_suspend(lua_State *L) |
| 1412 | { |
| 1413 | int nargs = lua_gettop(L); |
| 1414 | luaL_checktype(L, 1, LUA_TFUNCTION); |
| 1415 | |
| 1416 | CoreSuspender suspend; |
| 1417 | lua_call(L, nargs-1, LUA_MULTRET); |
| 1418 | |
| 1419 | return lua_gettop(L); |
| 1420 | } |
| 1421 | |
| 1422 | static int dfhack_open_plugin(lua_State *L) |
| 1423 | { |
nothing calls this directly
no test coverage detected