diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-10-13 08:49:26 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-10-14 09:03:37 -0600 |
commit | e0193e472b025d41438e251be622aad42c9af9cc (patch) | |
tree | 39decdc2935107624021d3a88089e0d7fe3f0756 /regcomp.sym | |
parent | 6d14883236070a9e17378de367aba1dfb01fb900 (diff) | |
download | perl-e0193e472b025d41438e251be622aad42c9af9cc.tar.gz |
regex: Remove old code that tried to handle multi-char folds
A recent commit has changed the algorithm used to handle multi-character
folding in bracketed character classes. The old code is no longer
needed.
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/regcomp.sym b/regcomp.sym index e8400b975b..3b4db9c9d7 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -55,7 +55,6 @@ REG_ANY REG_ANY, no 0 S ; Match any one character (except newline). SANY REG_ANY, no 0 S ; Match any one character. CANY REG_ANY, no 0 S ; Match any one byte. ANYOF ANYOF, sv 0 S ; Match character in (or not in) this class, single char match only -ANYOFV ANYOF, sv 0 V ; Match character in (or not in) this class, can match-multiple chars # Order (within each group) of the below is important. See ordering comment # above. The PLACEHOLDERn ones are wasting a value. Right now, we have plenty |