diff options
author | Rickard Green <[email protected]> | 2017-08-29 18:28:23 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-08-29 18:28:23 +0200 |
commit | cdcbf85b4f00f8dc2f61e895055943fc7209027c (patch) | |
tree | 1045f81f2a5a825222c355701cf4b5e30f20c393 /erts/emulator/pcre/pcre_ucd.c | |
parent | a230f26086b3db9097f06d4bb91fb3b2e9379c77 (diff) | |
download | otp-cdcbf85b4f00f8dc2f61e895055943fc7209027c.tar.gz otp-cdcbf85b4f00f8dc2f61e895055943fc7209027c.tar.bz2 otp-cdcbf85b4f00f8dc2f61e895055943fc7209027c.zip |
Upgrade to PCRE 8.41 from PCRE 8.40
Diffstat (limited to 'erts/emulator/pcre/pcre_ucd.c')
-rw-r--r-- | erts/emulator/pcre/pcre_ucd.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/erts/emulator/pcre/pcre_ucd.c b/erts/emulator/pcre/pcre_ucd.c index 9b700c0785..2dd4b05751 100644 --- a/erts/emulator/pcre/pcre_ucd.c +++ b/erts/emulator/pcre/pcre_ucd.c @@ -38,6 +38,20 @@ const pcre_uint16 PRIV(ucd_stage2)[] = {0}; const pcre_uint32 PRIV(ucd_caseless_sets)[] = {0}; #else +/* If the 32-bit library is run in non-32-bit mode, character values +greater than 0x10ffff may be encountered. For these we set up a +special record. */ + +#ifdef COMPILE_PCRE32 +const ucd_record PRIV(dummy_ucd_record)[] = {{ + ucp_Common, /* script */ + ucp_Cn, /* type unassigned */ + ucp_gbOther, /* grapheme break property */ + 0, /* case set */ + 0, /* other case */ + }}; +#endif + /* When recompiling tables with a new Unicode version, please check the types in this structure definition from pcre_internal.h (the actual field names will be different): |