| 461 | |
| 462 | namespace { |
| 463 | int dfhack_lineedit_cont(lua_State *L, int status, lua_KContext) |
| 464 | { |
| 465 | if (Lua::IsSuccess(status)) |
| 466 | return lua_gettop(L) - 2; |
| 467 | else |
| 468 | return dfhack_lineedit_sync(L, get_console(L)); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | static int dfhack_lineedit(lua_State *S) |
nothing calls this directly
no test coverage detected