applied Gottox' applyrules() fix
authoranselm@anselm1
Sun, 20 Apr 2008 18:17:33 +0100
changeset 1176 44df4a068f31
parent 1175 595ed1a4447c
child 1177 22d8c2fb999f
applied Gottox' applyrules() fix
dwm.c
--- a/dwm.c	Tue Apr 08 11:49:35 2008 +0100
+++ b/dwm.c	Sun Apr 20 18:17:33 2008 +0100
@@ -262,8 +262,8 @@
 	for(i = 0; i < LENGTH(rules); i++) {
 		r = &rules[i];
 		if((!r->title || strstr(c->name, r->title))
-		&& (!ch.res_class || !r->class || strstr(ch.res_class, r->class))
-		&& (!ch.res_name || !r->instance || strstr(ch.res_name, r->instance)))
+		&& (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
+		&& (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
 		{
 			c->isfloating = r->isfloating;
 			if(r->tag) {