mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
libregexp: allow up to 127 captured subexpressions in one regexp
128 counting with the entire expression match ($0).
This commit is contained in:
parent
727ce0e123
commit
cc4571fec6
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
typedef unsigned char uchar;
|
||||
#define nelem(x) (sizeof(x)/sizeof((x)[0]))
|
||||
|
||||
#define NSUBEXP 32
|
||||
#define NSUBEXP 128
|
||||
typedef struct Resublist Resublist;
|
||||
struct Resublist
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue