** Auxiliary function to call 'luaF_close' in protected mode. */
| 923 | ** Auxiliary function to call 'luaF_close' in protected mode. |
| 924 | */ |
| 925 | static void closepaux (lua_State *L, void *ud) { |
| 926 | struct CloseP *pcl = cast(struct CloseP *, ud); |
| 927 | luaF_close(L, pcl->level, pcl->status, 0); |
| 928 | } |
| 929 | |
| 930 | |
| 931 | /* |
nothing calls this directly
no test coverage detected