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