diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-12-06 11:56:49 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-12-07 18:52:43 -0800 |
commit | 28b5d7bf98b62fd30fb98fcdb5c701b1b2acdd8f (patch) | |
tree | d0de6510f7c9dfbbfb5201cefbaa7552f38c20af /regcomp.sym | |
parent | 6ab9ea91fb04390bf9c50134beadab7cf6fd0c25 (diff) | |
download | perl-28b5d7bf98b62fd30fb98fcdb5c701b1b2acdd8f.tar.gz |
regcomp.sym: Correct DIGITL, NDIGITL entries
These were missing that they were simple (matching exactly 1 character)
and have 0 regnode arguments
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.sym b/regcomp.sym index 42c0ee3ca9..707da08c77 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -51,9 +51,9 @@ SPACEL SPACE, no 0 S ; Match any whitespace char in locale NSPACE NSPACE, no 0 S ; Match any non-whitespace character NSPACEL NSPACE, no 0 S ; Match any non-whitespace char in locale DIGIT DIGIT, no 0 S ; Match any numeric character -DIGITL DIGIT, no ; Match any numeric character in locale +DIGITL DIGIT, no 0 S ; Match any numeric character in locale NDIGIT NDIGIT, no 0 S ; Match any non-numeric character -NDIGITL NDIGIT, no ; Match any non-numeric character in locale +NDIGITL NDIGIT, no 0 S ; Match any non-numeric character in locale CLUMP CLUMP, no 0 V ; Match any extended grapheme cluster sequence #* Alternation |