| 2811 | |
| 2812 | |
| 2813 | LUA_API int lua_error (lua_State *L) { |
| 2814 | lua_lock(L); |
| 2815 | api_checknelems(L, 1); |
| 2816 | luaG_errormsg(L); |
| 2817 | lua_unlock(L); |
| 2818 | return 0; /* to avoid warnings */ |
| 2819 | } |
| 2820 | |
| 2821 | |
| 2822 | LUA_API int lua_next (lua_State *L, int idx) { |
no test coverage detected