| 2085 | } |
| 2086 | |
| 2087 | static int l_errfunc(lua_State *lua) { |
| 2088 | logmsg(LOGMSG_DEBUG, "%s\n", lua_tostring(lua, -1)); |
| 2089 | lua_getglobal(lua, "debug"); |
| 2090 | lua_getfield(lua, -1, "traceback"); |
| 2091 | lua_pcall(lua, 0, 1, 0); |
| 2092 | logmsg(LOGMSG_DEBUG, "%s\n", lua_tostring(lua, -1)); |
| 2093 | return 1; |
| 2094 | } |
| 2095 | |
| 2096 | /* Convenience routines */ |
| 2097 | void luabb_pushinteger(lua_State *lua, long long ival) { |
nothing calls this directly
no test coverage detected