diff options
author | Karl Williamson <khw@cpan.org> | 2015-08-21 13:06:53 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-24 12:11:33 -0600 |
commit | ac44c12e0b8cc8431bb165c203dcf56d2659302c (patch) | |
tree | 325aad4748583d78cdd8b71cecd71e07301bf0bf /regcomp.sym | |
parent | b24abbc803191b400f0d0ab41db2f184860e7534 (diff) | |
download | perl-ac44c12e0b8cc8431bb165c203dcf56d2659302c.tar.gz |
Add ANYOFD regex node
This is like an ANYOF node, but just for when /d is in effect. It will
be used in future commits
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/regcomp.sym b/regcomp.sym index f385dc68a2..201c65e03d 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -57,6 +57,7 @@ NBOUNDA NBOUND, no ; Match "" betweeen any \w\w or \W\W, where \w REG_ANY REG_ANY, no 0 S ; Match any one character (except newline). 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 #* POSIX Character Classes: |