| 414 | |
| 415 | |
| 416 | static int resume_error (lua_State *L, const char *msg) { |
| 417 | L->top = L->ci->base; |
| 418 | setsvalue2s(L, L->top, luaS_new(L, msg)); |
| 419 | incr_top(L); |
| 420 | lua_unlock(L); |
| 421 | return LUA_ERRRUN; |
| 422 | } |
| 423 | |
| 424 | |
| 425 | LUA_API int lua_resume (lua_State *L, int nargs) { |