diff --git a/Makefile b/Makefile index 39cbddb..350a7d1 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # $Id$ # -VERSION = 0.10pre1 +VERSION = 0.10pre2 # C compiler to use. #CC = gcc diff --git a/screenfilter.c b/screenfilter.c index 93b0465..a33431c 100644 --- a/screenfilter.c +++ b/screenfilter.c @@ -27,7 +27,7 @@ int screen_filter_set(char* s) { regfree(&preg); } - r = regcomp(&preg, s, 0); + r = regcomp(&preg, s, REG_ICASE|REG_EXTENDED); if(r == 0) { options.screenfilter = s;