mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
plumber: increase NMATCHSUBEXP up to 100
Thus up to two-digit subexpression match variables are supported ($1 through $99) in addition to the entire expression match ($0).
This commit is contained in:
parent
4cd06ff66c
commit
727ce0e123
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ struct Ruleset
|
|||
|
||||
enum
|
||||
{
|
||||
NMATCHSUBEXP = 32 /* bounded by ../../libregexp/regcomp.h:/NSUBEXP */
|
||||
NMATCHSUBEXP = 100 /* bounded by ../../libregexp/regcomp.h:/NSUBEXP */
|
||||
};
|
||||
|
||||
struct Exec
|
||||
|
|
Loading…
Reference in a new issue