From 5ca200556a8fdcb5c9d0e21f7ac4c25d5181390f Mon Sep 17 00:00:00 2001 From: jsmorley Date: Mon, 31 Jan 2011 00:10:47 +0000 Subject: [PATCH] Lua - Changed LUA_MAXCAPTURES (the number of captures in one pattern matching statement) from the default 32 to 256 --- Library/lua/include/luaconf.h | 2 +- Library/lua/lua/luaconf.h | 2 +- revision-number.h | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Library/lua/include/luaconf.h b/Library/lua/include/luaconf.h index 5e7b98be..d042ba2f 100644 --- a/Library/lua/include/luaconf.h +++ b/Library/lua/include/luaconf.h @@ -630,7 +630,7 @@ union luai_Cast { double l_d; long l_l; }; @* can do during pattern-matching. ** CHANGE it if you need more captures. This limit is arbitrary. */ -#define LUA_MAXCAPTURES 32 +#define LUA_MAXCAPTURES 256 /* diff --git a/Library/lua/lua/luaconf.h b/Library/lua/lua/luaconf.h index e2cb2616..546015ba 100644 --- a/Library/lua/lua/luaconf.h +++ b/Library/lua/lua/luaconf.h @@ -630,7 +630,7 @@ union luai_Cast { double l_d; long l_l; }; @* can do during pattern-matching. ** CHANGE it if you need more captures. This limit is arbitrary. */ -#define LUA_MAXCAPTURES 32 +#define LUA_MAXCAPTURES 256 /* diff --git a/revision-number.h b/revision-number.h index fafd4642..02fbf953 100644 --- a/revision-number.h +++ b/revision-number.h @@ -1,8 +1,8 @@ #pragma once -#define FILEVER 1,4,0,712 -#define PRODUCTVER 1,4,0,712 -#define STRFILEVER "1.4.0.712" -#define STRPRODUCTVER "1.4.0.712" +#define FILEVER 1,4,0,728 +#define PRODUCTVER 1,4,0,728 +#define STRFILEVER "1.4.0.728" +#define STRPRODUCTVER "1.4.0.728" -const int revision_number = 712; +const int revision_number = 728; const bool revision_beta = true;