summaryrefslogtreecommitdiff
path: root/enc/iso_8859_4.c
diff options
context:
space:
mode:
Diffstat (limited to 'enc/iso_8859_4.c')
-rw-r--r--enc/iso_8859_4.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/enc/iso_8859_4.c b/enc/iso_8859_4.c
index ea529a10da..06a57ef7aa 100644
--- a/enc/iso_8859_4.c
+++ b/enc/iso_8859_4.c
@@ -250,14 +250,7 @@ case_map(OnigCaseFoldType* flagP, const OnigUChar** pp,
else if ((EncISO_8859_4_CtypeTable[code] & BIT_CTYPE_UPPER)
&& (flags & (ONIGENC_CASE_DOWNCASE|ONIGENC_CASE_FOLD))) {
flags |= ONIGENC_CASE_MODIFIED;
- if (code>=0xA0 && code<=0xBF) {
- if (code==0xBD)
- code += 0x02;
- else
- code += 0x10;
- }
- else
- code += 0x20;
+ code = ENC_ISO_8859_4_TO_LOWER_CASE(code);
}
else if ((EncISO_8859_4_CtypeTable[code]&BIT_CTYPE_LOWER)
&& (flags&ONIGENC_CASE_UPCASE)) {