From b5d869a89d9d20283ec0034270e9c9056a4d07f3 Mon Sep 17 00:00:00 2001 From: duerst Date: Mon, 11 Jul 2016 08:49:38 +0000 Subject: * enc/iso_8859_4.c, enc/iso_8859_10.c, enc/iso_8859_14.c, enc/iso_8859_15.c, enc/iso_8859_16.c: Replace case-by-case code with lookup in ENC_ISO_8859_xx_TO_LOWER_CASE table. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enc/iso_8859_15.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'enc/iso_8859_15.c') diff --git a/enc/iso_8859_15.c b/enc/iso_8859_15.c index 5180383331..4e6f76ed2b 100644 --- a/enc/iso_8859_15.c +++ b/enc/iso_8859_15.c @@ -248,16 +248,7 @@ case_map (OnigCaseFoldType* flagP, const OnigUChar** pp, else if ((EncISO_8859_15_CtypeTable[code] & BIT_CTYPE_UPPER) && (flags & (ONIGENC_CASE_DOWNCASE|ONIGENC_CASE_FOLD))) { flags |= ONIGENC_CASE_MODIFIED; - if (code==0xA6) - code += 2; - else if (code==0xB4) - code += 4; - else if (code==0xBC) - code += 1; - else if (code==0xBE) - code += 0x41; - else - code += 0x20; + code = ENC_ISO_8859_15_TO_LOWER_CASE(code); } else if ((EncISO_8859_15_CtypeTable[code]&BIT_CTYPE_LOWER) && (flags&ONIGENC_CASE_UPCASE)) { -- cgit v1.2.3