From e3b64d84f2a2d0eace596457dba25ca4974384e5 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 22 Oct 2014 12:38:20 -0600 Subject: Create bit for /n. --- regnodes.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'regnodes.h') diff --git a/regnodes.h b/regnodes.h index 937dd57a6d..41662a05cc 100644 --- a/regnodes.h +++ b/regnodes.h @@ -627,18 +627,18 @@ EXTCONST char * const PL_reg_name[] = { EXTCONST char * PL_reg_extflags_name[]; #else EXTCONST char * const PL_reg_extflags_name[] = { - /* Bits in extflags defined: 11111111111111110000001111111111 */ + /* Bits in extflags defined: 11111111111111110000011111111111 */ "MULTILINE", /* 0x00000001 */ "SINGLELINE", /* 0x00000002 */ "FOLD", /* 0x00000004 */ "EXTENDED", /* 0x00000008 */ "EXTENDED_MORE", /* 0x00000010 */ - "KEEPCOPY", /* 0x00000020 */ - "CHARSET0", /* 0x00000040 : "CHARSET" - 0x000001c0 */ - "CHARSET1", /* 0x00000080 : "CHARSET" - 0x000001c0 */ - "CHARSET2", /* 0x00000100 : "CHARSET" - 0x000001c0 */ - "SPLIT", /* 0x00000200 */ - "UNUSED_BIT_10", /* 0x00000400 */ + "NOCAPTURE", /* 0x00000020 */ + "KEEPCOPY", /* 0x00000040 */ + "CHARSET0", /* 0x00000080 : "CHARSET" - 0x00000380 */ + "CHARSET1", /* 0x00000100 : "CHARSET" - 0x00000380 */ + "CHARSET2", /* 0x00000200 : "CHARSET" - 0x00000380 */ + "SPLIT", /* 0x00000400 */ "UNUSED_BIT_11", /* 0x00000800 */ "UNUSED_BIT_12", /* 0x00001000 */ "UNUSED_BIT_13", /* 0x00002000 */ -- cgit v1.2.1