1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-04-12 08:26:33 +00:00

Make setfilter() regexes case-insensitive

This commit is contained in:
sin 2015-05-05 18:45:35 +01:00
parent 2ab57e7799
commit b9cac3a190

View file

@ -211,7 +211,7 @@ setfilter(regex_t *regex, char *filter)
char *errbuf;
int r;
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED);
r = regcomp(regex, filter, REG_NOSUB | REG_EXTENDED | REG_ICASE);
if (r != 0) {
errbuf = xmalloc(COLS * sizeof(char));
regerror(r, regex, errbuf, COLS * sizeof(char));