aboutsummaryrefslogtreecommitdiffstats
path: root/enc
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-11 09:05:53 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-11 09:05:53 +0000
commit541fdf7463f4051cc2526083f95d6b1cb91c09a9 (patch)
treed0dd8b07daa316493f06eea942693f3366b5ffc4 /enc
parentf2a187981e9c01a4ed4162b1543b2238f57a1bf8 (diff)
downloadruby-541fdf7463f4051cc2526083f95d6b1cb91c09a9.tar.gz
* enc/iso_8859_1.c: Moved test for lowercase characters without
uppercase equivalent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc')
-rw-r--r--enc/iso_8859_1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/enc/iso_8859_1.c b/enc/iso_8859_1.c
index ad3d4a531a..6070e4874c 100644
--- a/enc/iso_8859_1.c
+++ b/enc/iso_8859_1.c
@@ -279,7 +279,6 @@ case_map (OnigCaseFoldType* flagP, const OnigUChar** pp,
code = 's';
}
}
- else if (code==0xAA || code==0xBA || code==0xB5 || code==0xFF) ;
else if ((EncISO_8859_1_CtypeTable[code] & BIT_CTYPE_UPPER)
&& (flags & (ONIGENC_CASE_DOWNCASE|ONIGENC_CASE_FOLD))) {
flags |= ONIGENC_CASE_MODIFIED;
@@ -288,7 +287,10 @@ case_map (OnigCaseFoldType* flagP, const OnigUChar** pp,
else if ((EncISO_8859_1_CtypeTable[code]&BIT_CTYPE_LOWER)
&& (flags&ONIGENC_CASE_UPCASE)) {
flags |= ONIGENC_CASE_MODIFIED;
- code -= 0x20;
+ if (code==0xAA || code==0xBA || code==0xB5 || code==0xFF)
+ ;
+ else
+ code -= 0x20;
}
*to++ = code;
if (flags&ONIGENC_CASE_TITLECASE) /* switch from titlecase to lowercase for capitalize */