aboutsummaryrefslogtreecommitdiffstats
path: root/enc/unicode.c
diff options
context:
space:
mode:
Diffstat (limited to 'enc/unicode.c')
-rw-r--r--enc/unicode.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/enc/unicode.c b/enc/unicode.c
index a7483468f9..0e5d29b913 100644
--- a/enc/unicode.c
+++ b/enc/unicode.c
@@ -704,12 +704,6 @@ onigenc_unicode_case_map(OnigCaseFoldType* flagP,
}
}
}
- /* the following special case for DOTLESS i -> I
- * can be removed once we rely on data,
- * because the mapping is always the same */
- else if (code==DOTLESS_i && (flags&ONIGENC_CASE_UPCASE)) {
- code = 'I'; MODIFIED;
- }
else if ((folded = onigenc_unicode_fold_lookup(code)) != 0) { /* data about character found in CaseFold_11_Table */
if (flags&OnigCaseFoldFlags(folded->n)) {
const OnigCodePoint *next;