From: Nguyễn Thái Ngọc Duy Date: Sat, 25 Jun 2016 05:22:37 +0000 (+0200) Subject: diffcore-pickaxe: support case insensitive match on non-ascii X-Git-Tag: v2.9.3~47^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b51a9c1479645b3e0c7d5156d027a97a4bb87977?ds=inline;hp=b51a9c1479645b3e0c7d5156d027a97a4bb87977 diffcore-pickaxe: support case insensitive match on non-ascii Similar to the "grep -F -i" case, we can't use kws on icase search outside ascii range, so we quote the string and pass it to regcomp as a basic regexp and let regex engine deal with case sensitivity. The new test is put in t7812 instead of t4209-log-pickaxe because lib-gettext.sh might cause problems elsewhere, probably. Noticed-by: Plamen Totev Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano ---