| 1325 | |
| 1326 | |
| 1327 | void lua_setwarnf (lua_State *L, lua_WarnFunction f, void *ud) { |
| 1328 | lua_lock(L); |
| 1329 | G(L)->ud_warn = ud; |
| 1330 | G(L)->warnf = f; |
| 1331 | lua_unlock(L); |
| 1332 | } |
| 1333 | |
| 1334 | |
| 1335 | void lua_warning (lua_State *L, const char *msg, int tocont) { |
no outgoing calls
no test coverage detected