diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-07-04 00:07:26 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-07-04 07:44:45 +0100 |
commit | 0cb4637e2e588d1cd19e0660a7566b3cd756091b (patch) | |
tree | 6fac133d2b2dd4a4bef424718cd6714003890da4 /cpan/Unicode-Collate | |
parent | 7e03b518f310049554c2f316e4dd3051a0af0acf (diff) | |
download | perl-0cb4637e2e588d1cd19e0660a7566b3cd756091b.tar.gz |
Update Unicode-Collate to CPAN version 0.77
[DELTA]
0.77 Sun Jul 3 21:15:08 2011
- xs: [perl #93470] [PATCH] consting in Collate.xs by Robin Barker.
Diffstat (limited to 'cpan/Unicode-Collate')
-rw-r--r-- | cpan/Unicode-Collate/Changes | 9 | ||||
-rw-r--r-- | cpan/Unicode-Collate/Collate.pm | 2 | ||||
-rw-r--r-- | cpan/Unicode-Collate/Collate.xs | 4 | ||||
-rw-r--r-- | cpan/Unicode-Collate/README | 2 |
4 files changed, 10 insertions, 7 deletions
diff --git a/cpan/Unicode-Collate/Changes b/cpan/Unicode-Collate/Changes index db179ea772..7fc92e7488 100644 --- a/cpan/Unicode-Collate/Changes +++ b/cpan/Unicode-Collate/Changes @@ -1,12 +1,15 @@ Revision history for Perl module Unicode::Collate. +0.77 Sun Jul 3 21:15:08 2011 + - xs: [perl #93470] [PATCH] consting in Collate.xs by Robin Barker. + 0.76 Sun May 15 10:06:59 2011 - - updated CJK/Pinyin.pm and CJK/Stroke.pm according to CLDR 1.9.1 using - type='pinyin' alt='short' and type='stroke' alt='short' respectively. + - updated CJK/Pinyin.pm and CJK/Stroke.pm according to CLDR 1.9.1. + (type='pinyin' alt='short' and type='stroke' alt='short' respectively) 0.75 Sat May 7 21:07:38 2011 - supported ignore_level2 and rewrite. - - Added iglevel2.t and rewrite.t in t. + - added iglevel2.t and rewrite.t in t. 0.74 Mon Mar 21 19:07:38 2011 - removed sw (Swahili) collation according to CLDR 1.9. diff --git a/cpan/Unicode-Collate/Collate.pm b/cpan/Unicode-Collate/Collate.pm index 906b63c92a..d72dadf11d 100644 --- a/cpan/Unicode-Collate/Collate.pm +++ b/cpan/Unicode-Collate/Collate.pm @@ -14,7 +14,7 @@ use File::Spec; no warnings 'utf8'; -our $VERSION = '0.76'; +our $VERSION = '0.77'; our $PACKAGE = __PACKAGE__; ### begin XS only ### diff --git a/cpan/Unicode-Collate/Collate.xs b/cpan/Unicode-Collate/Collate.xs index 7f00642820..d9c14a6e3f 100644 --- a/cpan/Unicode-Collate/Collate.xs +++ b/cpan/Unicode-Collate/Collate.xs @@ -249,7 +249,7 @@ getHST (code, uca_vers = 0) UV code; IV uca_vers; PREINIT: - char * hangtype; + const char * hangtype; STRLEN typelen; CODE: if (codeRange(Hangul_SIni, Hangul_SFin)) { @@ -632,7 +632,7 @@ visualizeSortKey (self, key) STRLEN klen, dlen; UV uv; IV uca_vers; - static char *upperhex = "0123456789ABCDEF"; + static const char *upperhex = "0123456789ABCDEF"; CODE: if (SvROK(self) && SvTYPE(SvRV(self)) == SVt_PVHV) selfHV = (HV*)SvRV(self); diff --git a/cpan/Unicode-Collate/README b/cpan/Unicode-Collate/README index fcda1f332e..3e3b9ad3be 100644 --- a/cpan/Unicode-Collate/README +++ b/cpan/Unicode-Collate/README @@ -1,4 +1,4 @@ -Unicode/Collate version 0.76 +Unicode/Collate version 0.77 =============================== NAME |