From: John L. <jr...@us...> - 2007-12-07 02:13:43
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv12976/wxLua/docs Modified Files: changelog.txt Log Message: Too many changes to list... A large portion of the internal workings of the wxLuaState have been rewritten. All of the data that was stored in wxLuaStateData that might be needed by a function taking a lua_State* is now in the LUA_REGISTRYINDEX. C functions have been added to access these values. The generated bindings no longer need to have "wxLuaState wxlState(L);" since everything can be done with the C functions. The result is that wxLua should be faster. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** changelog.txt 30 Nov 2007 23:00:00 -0000 1.49 --- changelog.txt 7 Dec 2007 02:13:10 -0000 1.50 *************** *** 12,16 **** search for their usage. The functions in the wxLuaState used to be called just "txxx" and are now called wxluaT_Xxx where the first ! letter or each word is capitalized (camel-case); again for searching. - Made wxluaT_insert(L, idx) not pop the value that it refs since it may not be the one at the top of the stack. --- 12,16 ---- search for their usage. The functions in the wxLuaState used to be called just "txxx" and are now called wxluaT_Xxx where the first ! letter of each word is capitalized for searching. - Made wxluaT_insert(L, idx) not pop the value that it refs since it may not be the one at the top of the stack. *************** *** 30,33 **** --- 30,41 ---- not needed anymore. + * A large portion of the internal workings of the wxLuaState have been + rewritten. All of the data that was stored in wxLuaStateData that might + be needed by a function taking a lua_State* is now in the + LUA_REGISTRYINDEX. C functions have been added to access these values. + The generated bindings no longer need to have "wxLuaState wxlState(L);" + since everything can be done with the C functions. + The result is that wxLua should be faster. + version 2.8.4.2 -------------------------------------------------------------------- |