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

@@ -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;