regcomp.sym: Clarify comment
authorKarl Williamson <public@khwilliamson.com>
Fri, 12 Nov 2010 16:26:04 +0000 (09:26 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 22 Nov 2010 21:32:51 +0000 (13:32 -0800)
make regen needed

regcomp.sym
regnodes.h

index b0afeda..63e66e0 100644 (file)
@@ -41,7 +41,7 @@ GPOS        GPOS,       no        ; Matches where last m//g left off.
 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.
+ANYOF       ANYOF,      sv 0 S    ; Match character in (or not in) this class, folding is native charset for non-utf8.
 ALNUM       ALNUM,      no 0 S    ; Match any alphanumeric character
 ALNUML      ALNUM,      no 0 S    ; Match any alphanumeric char in locale
 NALNUM      NALNUM,     no 0 S    ; Match any non-alphanumeric character
index 1b2ec55..d3338c2 100644 (file)
@@ -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 */