aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-03 11:38:26 +0200
committerarg@10ksloc.org <unknown>2006-08-03 11:38:26 +0200
commit666b4563a0064dd7aa27159813124837d306f81c (patch)
tree9d80d0913b331f59a264e85cd39c5b5735294eca /tag.c
parent7315bb08ad45e163dbf110b92f8f9f5d392d96e2 (diff)
downloaddwm-666b4563a0064dd7aa27159813124837d306f81c.tar.zst
hotfix of settags
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tag.c b/tag.c
index 448ed2a..9022371 100644
--- a/tag.c
+++ b/tag.c
@@ -169,9 +169,8 @@ settags(Client *c)
if(!regcomp(&regex, rule[i].pattern, 0)) {
if(!regexec(&regex, classinst, 1, &tmp, 0)) {
for(j = 0; j < TLast; j++) {
- if(rule[i].tags[j])
+ if((c->tags[j] = rule[i].tags[j]))
matched = True;
- c->tags[j] = True;
}
c->isfloat = rule[i].isfloat;
}