| 1121 | |
| 1122 | |
| 1123 | static void warnfon (void *ud, const char *message, int tocont) { |
| 1124 | if (checkcontrol((lua_State *)ud, message, tocont)) /* control message? */ |
| 1125 | return; /* nothing else to be done */ |
| 1126 | lua_writestringerror("%s", "Lua warning: "); /* start a new warning */ |
| 1127 | warnfcont(ud, message, tocont); /* finish processing */ |
| 1128 | } |
| 1129 | |
| 1130 | |
| 1131 |
nothing calls this directly
no test coverage detected