| 1194 | |
| 1195 | |
| 1196 | LUA_API int lua_error (lua_State *L) { |
| 1197 | lua_lock(L); |
| 1198 | api_checknelems(L, 1); |
| 1199 | luaG_errormsg(L); |
| 1200 | /* code unreachable; will unlock when control actually leaves the kernel */ |
| 1201 | return 0; /* to avoid warnings */ |
| 1202 | } |
| 1203 | |
| 1204 | |
| 1205 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected