diff options
Diffstat (limited to 'lib/LuaRegex.cc')
-rw-r--r-- | lib/LuaRegex.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/LuaRegex.cc b/lib/LuaRegex.cc index e533928..a3b9a24 100644 --- a/lib/LuaRegex.cc +++ b/lib/LuaRegex.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: LuaRegex.cc,v 1.4 2007-05-30 11:57:10 pixel Exp $ */ +/* $Id: LuaRegex.cc,v 1.5 2007-07-27 10:05:52 pixel Exp $ */ #include "LuaRegex.h" @@ -32,12 +32,12 @@ enum Regex_functions_t { }; struct lua_functypes_t Regex_methods[] = { - { REGEX_MATCH, "Match", 1, 1, {LUA_STRING} }, + { REGEX_MATCH, "Match", 1, 1, { BLUA_STRING } }, { -1, 0, 0, 0, 0 } }; struct lua_functypes_t Regex_functions[] = { - { REGEX_NEWREGEX, "Regex" , 1, 3, {LUA_STRING, LUA_NUMBER, LUA_NUMBER} }, + { REGEX_NEWREGEX, "Regex" , 1, 3, { BLUA_STRING, BLUA_NUMBER, BLUA_NUMBER } }, { -1, 0, 0, 0, 0 } }; |