diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-11-13 20:55:49 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-22 13:32:52 -0800 |
commit | 61ef9872575b3dcdaf8dc091243e4764052a29e5 (patch) | |
tree | 9fc6d6151110cbaa2e88f19e47950ad92a66f091 /regcomp.h | |
parent | 2bb1f15cf3c668a3c56c1bc9c3ce74475ad2d425 (diff) | |
download | perl-61ef9872575b3dcdaf8dc091243e4764052a29e5.tar.gz |
regcomp.h: Add comment
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -327,7 +327,8 @@ struct regnode_charclass_class { #define ANYOF_NONBITMAP 0x20 #define ANYOF_UNICODE ANYOF_NONBITMAP /* old name, for back compat */ -#define ANYOF_UNICODE_ALL 0x40 /* Matches 0x100 - infinity */ +/* Matches every code point 0x100 and above*/ +#define ANYOF_UNICODE_ALL 0x40 /* EOS used for regstclass only */ #define ANYOF_EOS 0x80 /* Can match an empty string too */ |