Set auto-possessify limit to 1000 from 10000 (to match the Changelog).
This commit is contained in:
parent
2f265daed0
commit
9300cb6418
|
@ -1136,7 +1136,7 @@ for (;;)
|
||||||
get_chr_property_list(code, utf, cb->fcc, list) : NULL;
|
get_chr_property_list(code, utf, cb->fcc, list) : NULL;
|
||||||
list[1] = c == OP_STAR || c == OP_PLUS || c == OP_QUERY || c == OP_UPTO;
|
list[1] = c == OP_STAR || c == OP_PLUS || c == OP_QUERY || c == OP_UPTO;
|
||||||
|
|
||||||
rec_limit = 10000;
|
rec_limit = 1000;
|
||||||
if (end != NULL && compare_opcodes(end, utf, cb, list, end, &rec_limit))
|
if (end != NULL && compare_opcodes(end, utf, cb, list, end, &rec_limit))
|
||||||
{
|
{
|
||||||
switch(c)
|
switch(c)
|
||||||
|
@ -1193,7 +1193,7 @@ for (;;)
|
||||||
|
|
||||||
list[1] = (c & 1) == 0;
|
list[1] = (c & 1) == 0;
|
||||||
|
|
||||||
rec_limit = 10000;
|
rec_limit = 1000;
|
||||||
if (compare_opcodes(end, utf, cb, list, end, &rec_limit))
|
if (compare_opcodes(end, utf, cb, list, end, &rec_limit))
|
||||||
{
|
{
|
||||||
switch (c)
|
switch (c)
|
||||||
|
|
Loading…
Reference in New Issue