From 617b7ae7da886a680dcd425a3f41043f622ea6a2 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Fri, 12 Nov 2010 09:26:04 -0700 Subject: [PATCH 1/1] regcomp.sym: Clarify comment make regen needed --- regcomp.sym | 2 +- regnodes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regcomp.sym b/regcomp.sym index b0afeda..63e66e0 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -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 diff --git a/regnodes.h b/regnodes.h index 1b2ec55..d3338c2 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 */ -- 1.8.3.1