| 1078 | |
| 1079 | |
| 1080 | static void warnfon (void *ud, const char *message, int tocont) { |
| 1081 | if (checkcontrol((lua_State *)ud, message, tocont)) /* control message? */ |
| 1082 | return; /* nothing else to be done */ |
| 1083 | lua_writestringerror("%s", "Lua warning: "); /* start a new warning */ |
| 1084 | warnfcont(ud, message, tocont); /* finish processing */ |
| 1085 | } |
| 1086 | |
| 1087 | |
| 1088 | LUALIB_API lua_State *luaL_newstate (void) { |
nothing calls this directly
no test coverage detected