pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ebab75
)
minor bugfix in applyrules
author
anselm@anselm1
<unknown>
Mon, 17 Mar 2008 23:45:46 +0000
(23:45 +0000)
committer
anselm@anselm1
<unknown>
Mon, 17 Mar 2008 23:45:46 +0000
(23:45 +0000)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
533632a
..
979d4c6
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-259,7
+259,7
@@
applyrules(Client *c) {
XGetClassHint(dpy, c->win, &ch);
for(i = 0; i < LENGTH(rules); i++) {
r = &rules[i];
- if(strstr(c->name, r->title)
+ 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)))
{