| 1098 | |
| 1099 | |
| 1100 | static void warnfon (void *ud, const char *message, int tocont) { |
| 1101 | if (checkcontrol((lua_State *)ud, message, tocont)) /* control message? */ |
| 1102 | return; /* nothing else to be done */ |
| 1103 | lua_writestringerror("%s", "Lua warning: "); /* start a new warning */ |
| 1104 | warnfcont(ud, message, tocont); /* finish processing */ |
| 1105 | } |
| 1106 | |
| 1107 | |
| 1108 | LUALIB_API lua_State *luaL_newstate (void) { |
nothing calls this directly
no test coverage detected