summaryrefslogtreecommitdiff
path: root/regnodes.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-12-06 11:56:49 -0700
committerFather Chrysostomos <sprout@cpan.org>2010-12-07 18:52:43 -0800
commit28b5d7bf98b62fd30fb98fcdb5c701b1b2acdd8f (patch)
treed0de6510f7c9dfbbfb5201cefbaa7552f38c20af /regnodes.h
parent6ab9ea91fb04390bf9c50134beadab7cf6fd0c25 (diff)
downloadperl-28b5d7bf98b62fd30fb98fcdb5c701b1b2acdd8f.tar.gz
regcomp.sym: Correct DIGITL, NDIGITL entries
These were missing that they were simple (matching exactly 1 character) and have 0 regnode arguments
Diffstat (limited to 'regnodes.h')
-rw-r--r--regnodes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/regnodes.h b/regnodes.h
index 55a89f1549..35a4cc188c 100644
--- a/regnodes.h
+++ b/regnodes.h
@@ -707,8 +707,8 @@ EXTCONST U8 PL_simple[] __attribute__deprecated__;
#else
EXTCONST U8 PL_simple[] __attribute__deprecated__ = {
REG_ANY, SANY, CANY, ANYOF, ALNUM, ALNUML, NALNUM, NALNUML, SPACE,
- SPACEL, NSPACE, NSPACEL, DIGIT, NDIGIT, VERTWS, NVERTWS, HORIZWS,
- NHORIZWS,
+ SPACEL, NSPACE, NSPACEL, DIGIT, DIGITL, NDIGIT, NDIGITL, VERTWS,
+ NVERTWS, HORIZWS, NHORIZWS,
0
};
#endif /* DOINIT */
@@ -717,7 +717,7 @@ EXTCONST U8 PL_simple[] __attribute__deprecated__ = {
EXTCONST U8 PL_simple_bitmask[];
#else
EXTCONST U8 PL_simple_bitmask[] = {
- 0x00, 0xC0, 0xFF, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x07
+ 0x00, 0xC0, 0xFF, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x07
};
#endif /* DOINIT */