summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-09-20 10:52:01 -0600
committerKarl Williamson <khw@cpan.org>2018-10-20 00:09:54 -0600
commit3edce4f5816b41e2829e5e8b9fb794c46d8a1b95 (patch)
treebb831941dbb0ce101cc3ff0b1815fa90e6a43ec0 /regcomp.sym
parent14ed74f6dd2e0e693ae27a31f52b809b3258942d (diff)
downloadperl-3edce4f5816b41e2829e5e8b9fb794c46d8a1b95.tar.gz
regcomp.sym: Add node type ANYOF_POSIXL
This is like ANYOFL, but has runtime matches of /[[:posix:]]/ in it, which requires extra space. Adding this will allow a future commit to simplify handling for ANYOF nodes.
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym1
1 files changed, 1 insertions, 0 deletions
diff --git a/regcomp.sym b/regcomp.sym
index 6c20e28b8a..604163bcd8 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -59,6 +59,7 @@ SANY REG_ANY, no 0 S ; Match any one character.
ANYOF ANYOF, sv 1 S ; Match character in (or not in) this class, single char match only
ANYOFD ANYOF, sv 1 S ; Like ANYOF, but /d is in effect
ANYOFL ANYOF, sv 1 S ; Like ANYOF, but /l is in effect
+ANYOFPOSIXL ANYOF, sv 1 S ; Like ANYOFL, but matches [[:posix:]] classes
ANYOFM ANYOFM byte 1 S ; Like ANYOF, but matches an invariant byte as determined by the mask and arg
#* POSIX Character Classes: