about summary refs log tree commit diff stats
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
parent7315bb08ad45e163dbf110b92f8f9f5d392d96e2 (diff)
downloaddwm-666b4563a0064dd7aa27159813124837d306f81c.tar.gz
hotfix of settags
-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;
 				}
kkartik/mu/blame/baremetal/103grapheme.subx?h=main&id=20d6be52405130930fde9ca5bb5e95131ba4e659'>^
7f8770ae ^
3a0664e1 ^
3844651e ^

6ce43fce ^
dbf434f0 ^
6e36ce06 ^
dbf434f0 ^

6e36ce06 ^
dbf434f0 ^
7f8770ae ^

dbf434f0 ^
7f8770ae ^

dbf434f0 ^
6ce43fce ^
dbf434f0 ^
7f8770ae ^
dbf434f0 ^
6e36ce06 ^
dbf434f0 ^
7f8770ae ^



dbf434f0 ^
7f8770ae ^



7363c6df ^
7f8770ae ^

6e36ce06 ^
6ce43fce ^
7f8770ae ^
7363c6df ^

6ce43fce ^
7f8770ae ^













6ce43fce ^
7f8770ae ^









44131682 ^
6e36ce06 ^
44131682 ^



121a9eba ^

6ce43fce ^
44131682 ^




63be7b7d ^
422ebaf8 ^




121a9eba ^
6e36ce06 ^
121a9eba ^
6e36ce06 ^
121a9eba ^
6ce43fce ^
422ebaf8 ^






cec5ef31 ^
63be7b7d ^



f0ef1ca2 ^
cec5ef31 ^
63be7b7d ^








cec5ef31 ^
63be7b7d ^







44131682 ^

121a9eba ^
63be7b7d ^


cec5ef31 ^
63be7b7d ^






121a9eba ^
63be7b7d ^

121a9eba ^
44131682 ^
121a9eba ^
44131682 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173