| 136 | |
| 137 | #undef lua_replace |
| 138 | LUA_API void lua_replace (lua_State *L, int idx) { |
| 139 | lua_copy(L, -1, idx); |
| 140 | lua_pop(L, 1); |
| 141 | } |
| 142 | |
| 143 | #undef lua_pcall |
| 144 | LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc) { |
no test coverage detected