diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-08-26 11:25:13 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-08-26 12:28:28 -0600 |
commit | 1e958ea900b080a533d425464154978759f37121 (patch) | |
tree | b406539537a475284369ab74a636b14b869eeda9 /embed.fnc | |
parent | 8f78a100ba7595776f161ae7fa4a2780a2e3faca (diff) | |
download | perl-1e958ea900b080a533d425464154978759f37121.tar.gz |
Prepare for Unicode 6.2
This changes code to be able to handle Unicode 6.2, while continuing to
handle all prevrious releases.
The major change was a new definition of \X, which adds a property to
its calculation. Unfortunately \X is hard-coded into regexec.c, and so
has to revised whenever there is a change of this magnitude in Unicode,
which fortunately isn't all that often. I refactored the code in
mktables to make it easier next time there is a change like this one.
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -663,8 +663,9 @@ ApR |bool |is_utf8_mark |NN const U8 *p EXpR |bool |is_utf8_X_begin |NN const U8 *p EXpR |bool |is_utf8_X_extend |NN const U8 *p EXpR |bool |is_utf8_X_prepend |NN const U8 *p -EXpR |bool |is_utf8_X_non_hangul |NN const U8 *p +EXpR |bool |is_utf8_X_special_begin|NN const U8 *p EXpR |bool |is_utf8_X_L |NN const U8 *p +EXpR |bool |is_utf8_X_RI |NN const U8 *p :not currently used EXpR |bool |is_utf8_X_LV |NN const U8 *p EXpR |bool |is_utf8_X_LVT |NN const U8 *p EXpR |bool |is_utf8_X_LV_LVT_V |NN const U8 *p |