| 1112 | |
| 1113 | |
| 1114 | LUA_API int lua_error (lua_State *L) { |
| 1115 | lua_lock(L); |
| 1116 | api_checknelems(L, 1); |
| 1117 | luaG_errormsg(L); |
| 1118 | /* code unreachable; will unlock when control actually leaves the kernel */ |
| 1119 | return 0; /* to avoid warnings */ |
| 1120 | } |
| 1121 | |
| 1122 | |
| 1123 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected