| 1100 | |
| 1101 | |
| 1102 | LUA_API int lua_error (lua_State *L) { |
| 1103 | lua_lock(L); |
| 1104 | api_checknelems(L, 1); |
| 1105 | luaG_errormsg(L); |
| 1106 | /* code unreachable; will unlock when control actually leaves the kernel */ |
| 1107 | return 0; /* to avoid warnings */ |
| 1108 | } |
| 1109 | |
| 1110 | |
| 1111 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected