aewl
diff config.arg.h @ 191:56fee1dc9d53
switched to regexp matching for Rules
author | arg@10ksloc.org |
---|---|
date | Fri, 04 Aug 2006 14:40:32 +0200 |
parents | 713dcc7d2c42 |
children | 836fb04ec317 |
line diff
1.1 --- a/config.arg.h Fri Aug 04 13:42:40 2006 +0200 1.2 +++ b/config.arg.h Fri Aug 04 14:40:32 2006 +0200 1.3 @@ -52,11 +52,10 @@ 1.4 }; 1.5 1.6 #define RULES \ 1.7 - const unsigned int two[] = { 2 }; \ 1.8 static Rule rule[] = { \ 1.9 - /* class:instance tags isfloat */ \ 1.10 - { "Firefox.*", two, False }, \ 1.11 - { "Gimp.*", NULL, True}, \ 1.12 - { "MPlayer.*", NULL, True}, \ 1.13 - { "Acroread.*", NULL, True}, \ 1.14 + /* class:instance regex tags regex isfloat */ \ 1.15 + { "Firefox.*", "net", False }, \ 1.16 + { "Gimp.*", NULL, True}, \ 1.17 + { "MPlayer.*", NULL, True}, \ 1.18 + { "Acroread.*", NULL, True}, \ 1.19 };