From: John L. <jr...@us...> - 2007-07-04 14:46:14
|
Update of /cvsroot/wxlua/wxLua/bindings In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv27321/wxLua/bindings Modified Files: genwxbind.lua Log Message: Fix for wxABI_VERSION being broken in 2.8.4 (release = 99 for some reason) Index: genwxbind.lua =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/genwxbind.lua,v retrieving revision 1.142 retrieving revision 1.143 diff -C2 -d -r1.142 -r1.143 *** genwxbind.lua 4 Jul 2007 05:39:13 -0000 1.142 --- genwxbind.lua 4 Jul 2007 14:46:10 -0000 1.143 *************** *** 57,62 **** -- Table of delimiters in the binding text that separate different elements. -- Used in SplitString when reading the binding files. ! bindingDelimiters = { "[]", "==", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "}", "!", ";", "\t", "\r", "\n", " " } ! bindingDelimsToKeep = { "[]", "==", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "!" } bindingDelimiters_hash = {} --- 57,62 ---- -- Table of delimiters in the binding text that separate different elements. -- Used in SplitString when reading the binding files. ! bindingDelimiters = { "[]", "==", ">=", "<=", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "}", "!", ";", "\t", "\r", "\n", " " } ! bindingDelimsToKeep = { "[]", "==", ">=", "<=", "&&", "||", "//", "/*", "*/", "*", "&", "|", "(", ")", "[", "]", ",", "=", "{", "!" } bindingDelimiters_hash = {} |