0.10pre2. Extended, case insensitive regexps.

This commit is contained in:
pdw
2002-10-25 10:48:32 +00:00
parent 5b47e5be26
commit 0de8f605f7
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
# $Id$ # $Id$
# #
VERSION = 0.10pre1 VERSION = 0.10pre2
# C compiler to use. # C compiler to use.
#CC = gcc #CC = gcc

View File

@@ -27,7 +27,7 @@ int screen_filter_set(char* s) {
regfree(&preg); regfree(&preg);
} }
r = regcomp(&preg, s, 0); r = regcomp(&preg, s, REG_ICASE|REG_EXTENDED);
if(r == 0) { if(r == 0) {
options.screenfilter = s; options.screenfilter = s;