| 386 | |
| 387 | |
| 388 | static int luaB_pcall (lua_State *L) { |
| 389 | int status; |
| 390 | luaL_checkany(L, 1); |
| 391 | lua_pushnil(L); |
| 392 | lua_insert(L, 1); /* create space for status result */ |
| 393 | status = lua_pcallk(L, lua_gettop(L) - 2, LUA_MULTRET, 0, 0, pcallcont); |
| 394 | return finishpcall(L, (status == LUA_OK)); |
| 395 | } |
| 396 | |
| 397 | |
| 398 | static int luaB_xpcall (lua_State *L) { |
nothing calls this directly
no test coverage detected