| 969 | |
| 970 | |
| 971 | LUA_API int lua_error (lua_State *L) { |
| 972 | lua_lock(L); |
| 973 | api_checknelems(L, 1); |
| 974 | luaG_errormsg(L); |
| 975 | lua_unlock(L); |
| 976 | return 0; /* to avoid warnings */ |
| 977 | } |
| 978 | |
| 979 | |
| 980 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected