| 1083 | |
| 1084 | |
| 1085 | LUA_API int lua_error (lua_State *L) { |
| 1086 | lua_lock(L); |
| 1087 | api_checknelems(L, 1); |
| 1088 | luaG_errormsg(L); |
| 1089 | /* code unreachable; will unlock when control actually leaves the kernel */ |
| 1090 | return 0; /* to avoid warnings */ |
| 1091 | } |
| 1092 | |
| 1093 | |
| 1094 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected