diff options
Diffstat (limited to 'lib/LuaHandle.cc')
-rw-r--r-- | lib/LuaHandle.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/LuaHandle.cc b/lib/LuaHandle.cc index a2cfe71..6a7fc33 100644 --- a/lib/LuaHandle.cc +++ b/lib/LuaHandle.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: LuaHandle.cc,v 1.17 2006-01-31 17:02:39 pixel Exp $ */ +/* $Id: LuaHandle.cc,v 1.18 2006-02-02 14:09:48 pixel Exp $ */ #include "LuaHandle.h" @@ -180,7 +180,7 @@ int sLuaHandle::read(lua_State * __L) { int sLuaHandle::readstring(lua_State * __L) { Lua * L = Lua::find(__L); - int n = L->gettop(), i; + int n = L->gettop(); Handle * h; String r; @@ -247,7 +247,7 @@ int sLuaHandle::write(lua_State * __L) { int sLuaHandle::writestring(lua_State * __L) { Lua * L = Lua::find(__L); - int n = L->gettop(), i; + int n = L->gettop(); Handle * h; String r; @@ -604,7 +604,7 @@ int sLuaHandle::exists(lua_State * __L) { try { Input testing(L->tostring()); } - catch (IOGeneral & e) { + catch (IOGeneral &) { r = false; } |