| 93 | |
| 94 | #if LUA_VERSION_NUM == 502 |
| 95 | static int protected_cont(lua_State *L) { |
| 96 | int ctx = 0; |
| 97 | int status = lua_getctx(L, &ctx); |
| 98 | return protected_finish(L, status, ctx); |
| 99 | } |
| 100 | #else |
| 101 | #define protected_cont protected_finish |
| 102 | #endif |
nothing calls this directly
no test coverage detected