| 5552 | |
| 5553 | |
| 5554 | static int resume_error (lua_State *L, const char *msg) { |
| 5555 | L->top = L->ci->base; |
| 5556 | setsvalue2s(L, L->top, luaS_new(L, msg)); |
| 5557 | incr_top(L); |
| 5558 | lua_unlock(L); |
| 5559 | return LUA_ERRRUN; |
| 5560 | } |
| 5561 | |
| 5562 | |
| 5563 | LUA_API int lua_resume (lua_State *L, int nargs) { |