| 407 | |
| 408 | |
| 409 | static int resume_error (lua_State *L, const char *msg) { |
| 410 | L->top = L->ci->base; |
| 411 | setsvalue2s(L, L->top, luaS_new(L, msg)); |
| 412 | incr_top(L); |
| 413 | lua_unlock(L); |
| 414 | return LUA_ERRRUN; |
| 415 | } |
| 416 | |
| 417 | |
| 418 | LUA_API int lua_resume (lua_State *L, int nargs) { |