diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-11-12 09:26:04 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-22 13:32:51 -0800 |
commit | 617b7ae7da886a680dcd425a3f41043f622ea6a2 (patch) | |
tree | 0d006f5928e71cc83bb4ea57320d7648805cf647 /regnodes.h | |
parent | 66615a54c249620bc7ad25e377cc80f5d1245172 (diff) | |
download | perl-617b7ae7da886a680dcd425a3f41043f622ea6a2.tar.gz |
regcomp.sym: Clarify comment
make regen needed
Diffstat (limited to 'regnodes.h')
-rw-r--r-- | regnodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regnodes.h b/regnodes.h index 1b2ec55fdd..d3338c2ec3 100644 --- a/regnodes.h +++ b/regnodes.h @@ -26,7 +26,7 @@ #define REG_ANY 14 /* 0x0e Match any one character (except newline). */ #define SANY 15 /* 0x0f Match any one character. */ #define CANY 16 /* 0x10 Match any one byte. */ -#define ANYOF 17 /* 0x11 Match character in (or not in) this class. */ +#define ANYOF 17 /* 0x11 Match character in (or not in) this class, folding is native charset for non-utf8. */ #define ALNUM 18 /* 0x12 Match any alphanumeric character */ #define ALNUML 19 /* 0x13 Match any alphanumeric char in locale */ #define NALNUM 20 /* 0x14 Match any non-alphanumeric character */ |