Diff for /embedaddon/pcre/pcre_ucd.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:05:51 version 1.1.1.2, 2012/02/21 23:50:25
Line 18 Line 18
 /* Instead, just supply small dummy tables. */  /* Instead, just supply small dummy tables. */
   
 #ifndef SUPPORT_UCP  #ifndef SUPPORT_UCP
const ucd_record _pcre_ucd_records[] = {{0,0,0 }};const ucd_record PRIV(ucd_records)[] = {{0,0,0 }};
const uschar _pcre_ucd_stage1[] = {0};const pcre_uint8 PRIV(ucd_stage1)[] = {0};
const pcre_uint16 _pcre_ucd_stage2[] = {0};const pcre_uint16 PRIV(ucd_stage2)[] = {0};
 #else  #else
   
 /* When recompiling tables with a new Unicode version,  /* When recompiling tables with a new Unicode version,
 please check types in the structure definition from pcre_internal.h:  please check types in the structure definition from pcre_internal.h:
 typedef struct {  typedef struct {
uschar property_0;pcre_uint8 property_0;
uschar property_1;pcre_uint8 property_1;
 pcre_int32 property_2;  pcre_int32 property_2;
 } ucd_record; */  } ucd_record; */
   
   
const ucd_record _pcre_ucd_records[] = { /* 4320 bytes, record size 8 */const ucd_record PRIV(ucd_records)[] = { /* 4320 bytes, record size 8 */
   {     9,      0,      0, }, /*   0 */    {     9,      0,      0, }, /*   0 */
   {     9,     29,      0, }, /*   1 */    {     9,     29,      0, }, /*   1 */
   {     9,     21,      0, }, /*   2 */    {     9,     21,      0, }, /*   2 */
Line 575  const ucd_record _pcre_ucd_records[] = { /* 4320 bytes Line 575  const ucd_record _pcre_ucd_records[] = { /* 4320 bytes
   {    26,     26,      0, }, /* 539 */    {    26,     26,      0, }, /* 539 */
 };  };
   
const uschar _pcre_ucd_stage1[] = { /* 8704 bytes */const pcre_uint8 PRIV(ucd_stage1)[] = { /* 8704 bytes */
   0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, /* U+0000 */    0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, /* U+0000 */
  16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* U+0800 */   16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* U+0800 */
  32, 33, 34, 34, 35, 36, 37, 38, 39, 40, 40, 40, 41, 42, 43, 44, /* U+1000 */   32, 33, 34, 34, 35, 36, 37, 38, 39, 40, 40, 40, 41, 42, 43, 44, /* U+1000 */
Line 1122  const uschar _pcre_ucd_stage1[] = { /* 8704 bytes */ Line 1122  const uschar _pcre_ucd_stage1[] = { /* 8704 bytes */
 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,184, /* U+10F800 */  114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,184, /* U+10F800 */
 };  };
   
const pcre_uint16 _pcre_ucd_stage2[] = { /* 47360 bytes, block = 128 */const pcre_uint16 PRIV(ucd_stage2)[] = { /* 47360 bytes, block = 128 */
 /* block 0 */  /* block 0 */
   0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,    0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
   0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,    0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>