** Auxiliary function to call 'luaF_close' in protected mode. */
| 916 | ** Auxiliary function to call 'luaF_close' in protected mode. |
| 917 | */ |
| 918 | static void closepaux (lua_State *L, void *ud) { |
| 919 | struct CloseP *pcl = cast(struct CloseP *, ud); |
| 920 | luaF_close(L, pcl->level, pcl->status, 0); |
| 921 | } |
| 922 | |
| 923 | |
| 924 | /* |
nothing calls this directly
no test coverage detected