From: Rui Hirokawa Date: Sat, 19 Mar 2005 08:52:23 +0000 (+0000) Subject: oniguruma updated to 3.7.1 and changed UChar to OnigUChar. X-Git-Tag: php-5.0.1b1~758 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c30f4ab6eca4b885cf436c8844472f00349b62cc;p=php oniguruma updated to 3.7.1 and changed UChar to OnigUChar. --- diff --git a/ext/mbstring/oniguruma/HISTORY b/ext/mbstring/oniguruma/HISTORY index 65ef03f50f..c648c54551 100644 --- a/ext/mbstring/oniguruma/HISTORY +++ b/ext/mbstring/oniguruma/HISTORY @@ -1,5 +1,19 @@ History +2005/03/07: Version 3.7.1 + +2005/03/07: [test] success in ruby 1.9.0 (2005-03-07) [i686-linux]. +2005/03/07: [impl] (thanks Rui Hirokawa) + add ONIG_ESCAPE_UCHAR_COLLISION. + rename UChar to OnigUChar in oniguruma.h. +2005/03/07: [impl] remove declarations for Ruby in oniggnu.h. +2005/03/05: [bug] ANCHOR_ANYCHAR_STAR didn't work in onig_search(). +2005/03/01: [dist] remove oniggnu.h from MANIFEST-RUBY. + remove oniggnu.h from make 19. +2005/03/01: [bug] (thanks matz) [ruby-dev:25778] + uninitialized member (OptEnv.backrefed_status) + was used. + 2005/02/19: Version 3.7.0 2005/02/19: [test] success in ruby 1.9.0 (2005-02-19) [i386-cygwin]. diff --git a/ext/mbstring/oniguruma/enc/koi8.c b/ext/mbstring/oniguruma/enc/koi8.c index f8a5a1da61..84afa1afef 100644 --- a/ext/mbstring/oniguruma/enc/koi8.c +++ b/ext/mbstring/oniguruma/enc/koi8.c @@ -105,9 +105,9 @@ static unsigned short EncKOI8_CtypeTable[256] = { static int koi8_mbc_to_normalize(OnigAmbigType flag, - const UChar** pp, const UChar* end, UChar* lower) + UChar** pp, UChar* end, UChar* lower) { - UChar* p = (UChar *)*pp; + UChar* p = *pp; if (((flag & ONIGENC_AMBIGUOUS_MATCH_ASCII_CASE) != 0 && ONIGENC_IS_MBC_ASCII(p)) || @@ -123,9 +123,9 @@ koi8_mbc_to_normalize(OnigAmbigType flag, } static int -koi8_is_mbc_ambiguous(OnigAmbigType flag, const UChar** pp, const UChar* end) +koi8_is_mbc_ambiguous(OnigAmbigType flag, UChar** pp, UChar* end) { - UChar* p = (UChar *)*pp; + UChar* p = *pp; (*pp)++; if (((flag & ONIGENC_AMBIGUOUS_MATCH_ASCII_CASE) != 0 && diff --git a/ext/mbstring/oniguruma/index.html b/ext/mbstring/oniguruma/index.html index 293ea442a3..02e844c363 100755 --- a/ext/mbstring/oniguruma/index.html +++ b/ext/mbstring/oniguruma/index.html @@ -5,14 +5,18 @@ -

Oniguruma

-

-2005/02/19 (C) K.Kosako -

-

+ +M +N + +

Oniguruma

+ +

+2005/03/07 (C) K.Kosako

@@ -38,7 +42,8 @@ ISO-8859-11, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16

What's new @@ -49,7 +54,7 @@ ISO-8859-11, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16 @@ -70,12 +75,12 @@ It follows the BSD license in the case of the one except for it.
Download:
@@ -86,7 +91,7 @@ It follows the BSD license in the case of the one except for it.

-
Documents: (version 3.7.0) +
Documents: (version 3.7.1)