From e21d93b7bd5d34f31bc09a576b7d449df5b68c07 Mon Sep 17 00:00:00 2001 From: arg@10ksloc.org Date: Fri, 4 Aug 2006 14:40:32 +0200 Subject: switched to regexp matching for Rules --- config.arg.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'config.arg.h') diff --git a/config.arg.h b/config.arg.h index 4297376..d391f9e 100644 --- a/config.arg.h +++ b/config.arg.h @@ -52,11 +52,10 @@ static Key key[] = { \ }; #define RULES \ - const unsigned int two[] = { 2 }; \ static Rule rule[] = { \ - /* class:instance tags isfloat */ \ - { "Firefox.*", two, False }, \ - { "Gimp.*", NULL, True}, \ - { "MPlayer.*", NULL, True}, \ - { "Acroread.*", NULL, True}, \ + /* class:instance regex tags regex isfloat */ \ + { "Firefox.*", "net", False }, \ + { "Gimp.*", NULL, True}, \ + { "MPlayer.*", NULL, True}, \ + { "Acroread.*", NULL, True}, \ }; -- cgit v1.2.3