[hackers] [dwm] fixed || Anselm R Garbe

From: <hg_AT_suckless.org>
Date: Fri, 29 Aug 2008 10:30:00 +0000 (UTC)

changeset: 1349:56c2529afeab
branch: merge
tag: tip
user: Anselm R Garbe <garbeam_AT_gmail.com>
date: Fri Aug 29 11:29:42 2008 +0100
files: dwm.c
description:
fixed

diff -r 18098673e417 -r 56c2529afeab dwm.c
--- a/dwm.c Fri Aug 29 10:13:47 2008 +0100
+++ b/dwm.c Fri Aug 29 11:29:42 2008 +0100
@@ -250,21 +250,21 @@
         XClassHint ch = { 0 };
 
         /* rule matching */
- if(XGetClassHint(dpy, c->win, &ch) == 0)
- return;
- for(i = 0; i < LENGTH(rules); i++) {
- r = &rules[i];
- if((!r->title || strstr(c->name, r->title))
- && (!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;
- c->tags |= r->tags & TAGMASK;
+ if(XGetClassHint(dpy, c->win, &ch)) {
+ for(i = 0; i < LENGTH(rules); i++) {
+ r = &rules[i];
+ if((!r->title || strstr(c->name, r->title))
+ && (!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;
+ c->tags |= r->tags & TAGMASK;
+ }
                 }
+ if(ch.res_class)
+ XFree(ch.res_class);
+ if(ch.res_name)
+ XFree(ch.res_name);
         }
- if(ch.res_class)
- XFree(ch.res_class);
- if(ch.res_name)
- XFree(ch.res_name);
         if(!c->tags)
                 c->tags = tagset[seltags];
 }
Received on Fri Aug 29 2008 - 10:30:00 UTC

This archive was generated by hypermail 2.2.0 : Fri Aug 29 2008 - 10:36:07 UTC