summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorMarc Lehmann <pcg@goof.com>2000-09-03 11:44:29 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2000-09-07 19:12:28 +0000
commit289d4f092c382a985bdc9f6c69b13b9b784f67f9 (patch)
tree34cfb66cb3f8667f7f699a06f1802f46cd16193d /regcomp.h
parent50577dabfdb49e7c306a4e348cf2b16310eb61aa (diff)
downloadperl-289d4f092c382a985bdc9f6c69b13b9b784f67f9.tar.gz
Fix for
Subject: [ID 20000903.001] \w in utf8-strings Message-Id: <E13VUS5-0000cv-00.pgcc-forever-2000-09-03-09-44-29@fuji> and various related nits. p4raw-id: //depot/perl@7030
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/regcomp.h b/regcomp.h
index e30e67f30f..225ff74a26 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -192,13 +192,13 @@ struct regnode_charclass_class {
/* Should be synchronized with a table in regprop() */
/* 2n should pair with 2n+1 */
-#define ANYOF_ALNUM 0 /* \w, utf8::IsWord, isALNUM() */
+#define ANYOF_ALNUM 0 /* \w, PL_utf8_alnum, utf8::IsWord, ALNUM */
#define ANYOF_NALNUM 1
#define ANYOF_SPACE 2 /* \s */
#define ANYOF_NSPACE 3
#define ANYOF_DIGIT 4
#define ANYOF_NDIGIT 5
-#define ANYOF_ALNUMC 6 /* isalnum(3), utf8::IsAlnum, isALNUMC() */
+#define ANYOF_ALNUMC 6 /* isalnum(3), utf8::IsAlnum, ALNUMC */
#define ANYOF_NALNUMC 7
#define ANYOF_ALPHA 8
#define ANYOF_NALPHA 9
@@ -220,8 +220,8 @@ struct regnode_charclass_class {
#define ANYOF_NXDIGIT 25
#define ANYOF_PSXSPC 26 /* POSIX space: \s plus the vertical tab */
#define ANYOF_NPSXSPC 27
-#define ANYOF_BLANK 28
-#define ANYOF_NBLANK 29 /* GNU extension: space and tab */
+#define ANYOF_BLANK 28 /* GNU extension: space and tab */
+#define ANYOF_NBLANK 29
#define ANYOF_MAX 32