From: John L. <jr...@us...> - 2007-03-23 04:27:27
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24349/wxLua/modules/wxluadebug/src Modified Files: wxldebug.cpp Log Message: Renamed all 'C' functions from wxLua_lua_XXX to just wxlua_XXX to shorten them and match lua's lua_XXX function convention. Index: wxldebug.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/wxldebug.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** wxldebug.cpp 23 Mar 2007 00:09:36 -0000 1.28 --- wxldebug.cpp 23 Mar 2007 04:27:24 -0000 1.29 *************** *** 377,381 **** lua_State* L = wxlState.GetLuaState(); ! int nTag = wxLua_lua_ttag(L, index); int nItems = luaL_getn(L, index); const void *pItem = lua_topointer(L, index); --- 377,381 ---- lua_State* L = wxlState.GetLuaState(); ! int nTag = wxlua_ttag(L, index); int nItems = luaL_getn(L, index); const void *pItem = lua_topointer(L, index); |