From 596717cee028c8ad9e0b419ef9143521a52d81b0 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 30 Nov 2001 01:09:17 +0000 Subject: [PATCH] Use to_uni_fold (and add changed global.sym) p4raw-id: //depot/perl@13375 --- utf8.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utf8.c b/utf8.c index 1a92962..8711137 100644 --- a/utf8.c +++ b/utf8.c @@ -1581,11 +1581,11 @@ Perl_ibcmp_utf8(pTHX_ const char *s1, bool u1, const char *s2, bool u2, register } if (ca != cb) { if (u1) - to_uni_lower(NATIVE_TO_UNI(ca), tmpbuf1, &ulen1); + to_uni_fold(NATIVE_TO_UNI(ca), tmpbuf1, &ulen1); else ulen1 = 1; if (u2) - to_uni_lower(NATIVE_TO_UNI(cb), tmpbuf2, &ulen2); + to_uni_fold(NATIVE_TO_UNI(cb), tmpbuf2, &ulen2); else ulen2 = 1; if (ulen1 != ulen2 -- 2.7.4