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