From a568f3004e2c1f543e453b40ae753f06cc592f8b Mon Sep 17 00:00:00 2001 From: martii Date: Tue, 7 May 2013 20:56:57 +0200 Subject: [PATCH] lua: remove debugging output --- src/gui/luainstance.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/gui/luainstance.cpp b/src/gui/luainstance.cpp index f139c7d23..d719d1c09 100644 --- a/src/gui/luainstance.cpp +++ b/src/gui/luainstance.cpp @@ -662,7 +662,6 @@ m:exec() bool CLuaInstance::tableLookup(lua_State *L, const char *what, std::string &value) { -fprintf(stderr, "tableLookupString\n"); bool res = false; lua_pushstring(L, what); lua_gettable(L, -2); @@ -670,13 +669,11 @@ fprintf(stderr, "tableLookupString\n"); if (res) value = lua_tostring(L, -1); lua_pop(L, 1); -fprintf(stderr, "res=%d\n", res); return res; } bool CLuaInstance::tableLookup(lua_State *L, const char *what, int &value) { -fprintf(stderr, "tableLookupInt\n"); bool res = false; lua_pushstring(L, what); lua_gettable(L, -2); @@ -684,7 +681,6 @@ fprintf(stderr, "tableLookupInt\n"); if (res) value = (int) lua_tonumber(L, -1); lua_pop(L, 1); -fprintf(stderr, "res=%d\n", res); return res; }