| 1317 | |
| 1318 | |
| 1319 | void lua_setwarnf (lua_State *L, lua_WarnFunction f, void *ud) { |
| 1320 | lua_lock(L); |
| 1321 | G(L)->ud_warn = ud; |
| 1322 | G(L)->warnf = f; |
| 1323 | lua_unlock(L); |
| 1324 | } |
| 1325 | |
| 1326 | |
| 1327 | void lua_warning (lua_State *L, const char *msg, int tocont) { |
no outgoing calls
no test coverage detected