Filtering is now case insensitive.
This commit is contained in:
parent
2b44dbd7e4
commit
7fd291f407
@ -1,4 +1,4 @@
|
|||||||
/* $Id: filter.c,v 1.14 2002-06-07 19:10:05 rjkaes Exp $
|
/* $Id: filter.c,v 1.15 2002-10-03 20:40:39 rjkaes Exp $
|
||||||
*
|
*
|
||||||
* Copyright (c) 1999 George Talusan (gstalusan@uwaterloo.ca)
|
* Copyright (c) 1999 George Talusan (gstalusan@uwaterloo.ca)
|
||||||
* Copyright (c) 2002 James E. Flemer (jflemer@acm.jhu.edu)
|
* Copyright (c) 2002 James E. Flemer (jflemer@acm.jhu.edu)
|
||||||
@ -57,7 +57,7 @@ filter_init(void)
|
|||||||
if (fd) {
|
if (fd) {
|
||||||
p = NULL;
|
p = NULL;
|
||||||
|
|
||||||
cflags = REG_NEWLINE | REG_NOSUB;
|
cflags = REG_NEWLINE | REG_NOSUB | REG_ICASE;
|
||||||
if (config.filter_extended)
|
if (config.filter_extended)
|
||||||
cflags |= REG_EXTENDED;
|
cflags |= REG_EXTENDED;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user