diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-02 17:48:56 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-14 08:41:38 -0700 |
commit | df7a846035e6969f5e1c298976888d5cc7878d25 (patch) | |
tree | 166edd6f5ecc35bcf1a79324fc96df717715fd8b /regnodes.h | |
parent | 5b67c30a31044c5d4e88d3f815fdfdf86649016b (diff) | |
download | perl-df7a846035e6969f5e1c298976888d5cc7878d25.tar.gz |
Initial setup to accommodate /aa regex modifier
This changes the bits to add a new charset type for /aa, and other bookkeeping
for it.
Diffstat (limited to 'regnodes.h')
-rw-r--r-- | regnodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regnodes.h b/regnodes.h index 72c93ffb00..b1cc6b3624 100644 --- a/regnodes.h +++ b/regnodes.h @@ -715,15 +715,15 @@ EXTCONST char * const PL_reg_name[] = { EXTCONST char * PL_reg_extflags_name[]; #else EXTCONST char * const PL_reg_extflags_name[] = { - /* Bits in extflags defined: 11111111111111111111111001111111 */ + /* Bits in extflags defined: 11111111111111111111111011111111 */ "MULTILINE", /* 0x00000001 */ "SINGLELINE", /* 0x00000002 */ "FOLD", /* 0x00000004 */ "EXTENDED", /* 0x00000008 */ "KEEPCOPY", /* 0x00000010 */ - "CHARSET", /* 0x00000060 */ - "CHARSET", /* 0x00000060 */ - "UNUSED_BIT_7", /* 0x00000080 */ + "CHARSET", /* 0x000000e0 */ + "CHARSET", /* 0x000000e0 */ + "CHARSET", /* 0x000000e0 */ "UNUSED_BIT_8", /* 0x00000100 */ "ANCH_BOL", /* 0x00000200 */ "ANCH_MBOL", /* 0x00000400 */ |