mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Lua - Changed LUA_MAXCAPTURES (the number of captures in one pattern matching statement) from the default 32 to 256
This commit is contained in:
parent
b2c8ad72d1
commit
5ca200556a
@ -630,7 +630,7 @@ union luai_Cast { double l_d; long l_l; };
|
|||||||
@* can do during pattern-matching.
|
@* can do during pattern-matching.
|
||||||
** CHANGE it if you need more captures. This limit is arbitrary.
|
** CHANGE it if you need more captures. This limit is arbitrary.
|
||||||
*/
|
*/
|
||||||
#define LUA_MAXCAPTURES 32
|
#define LUA_MAXCAPTURES 256
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -630,7 +630,7 @@ union luai_Cast { double l_d; long l_l; };
|
|||||||
@* can do during pattern-matching.
|
@* can do during pattern-matching.
|
||||||
** CHANGE it if you need more captures. This limit is arbitrary.
|
** CHANGE it if you need more captures. This limit is arbitrary.
|
||||||
*/
|
*/
|
||||||
#define LUA_MAXCAPTURES 32
|
#define LUA_MAXCAPTURES 256
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#define FILEVER 1,4,0,712
|
#define FILEVER 1,4,0,728
|
||||||
#define PRODUCTVER 1,4,0,712
|
#define PRODUCTVER 1,4,0,728
|
||||||
#define STRFILEVER "1.4.0.712"
|
#define STRFILEVER "1.4.0.728"
|
||||||
#define STRPRODUCTVER "1.4.0.712"
|
#define STRPRODUCTVER "1.4.0.728"
|
||||||
|
|
||||||
const int revision_number = 712;
|
const int revision_number = 728;
|
||||||
const bool revision_beta = true;
|
const bool revision_beta = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user