| 962 | |
| 963 | |
| 964 | LUA_API int lua_error (lua_State *L) { |
| 965 | lua_lock(L); |
| 966 | api_checknelems(L, 1); |
| 967 | luaG_errormsg(L); |
| 968 | lua_unlock(L); |
| 969 | return 0; /* to avoid warnings */ |
| 970 | } |
| 971 | |
| 972 | |
| 973 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected