| 2488 | } |
| 2489 | |
| 2490 | COMPAT53_API int lua_absindex(lua_State *L, int i) { |
| 2491 | if (i < 0 && i > LUA_REGISTRYINDEX) |
| 2492 | i += lua_gettop(L) + 1; |
| 2493 | return i; |
| 2494 | } |
| 2495 | |
| 2496 | static void compat53_call_lua(lua_State *L, char const code[], size_t len, |
| 2497 | int nargs, int nret) { |
no test coverage detected