From 7fd291f407a9ef14cd3ac018c51a34bd446fc3a6 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Thu, 3 Oct 2002 20:40:39 +0000 Subject: Filtering is now case insensitive. --- src/filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/filter.c b/src/filter.c index 11f8c81..ef60741 100644 --- a/src/filter.c +++ b/src/filter.c @@ -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) 2002 James E. Flemer (jflemer@acm.jhu.edu) @@ -57,7 +57,7 @@ filter_init(void) if (fd) { p = NULL; - cflags = REG_NEWLINE | REG_NOSUB; + cflags = REG_NEWLINE | REG_NOSUB | REG_ICASE; if (config.filter_extended) cflags |= REG_EXTENDED; -- cgit v1.2.3