about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-05-10 13:49:17 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-05-10 13:49:17 +0200
commitc67dbb28e47b03eca0c7faddcf7c9862c41694b7 (patch)
tree258282155f3a13e7a1a2c8433f08f6ebb3da8152 /client.c
parentb8bccb4ac5222a01ecd6a5f82997ea2ee3b84b8b (diff)
downloaddwm-c67dbb28e47b03eca0c7faddcf7c9862c41694b7.tar.gz
small fix of fix
Diffstat (limited to 'client.c')
-rw-r--r--client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/client.c b/client.c
index 64da343..3db14f5 100644
--- a/client.c
+++ b/client.c
@@ -365,9 +365,8 @@ updatetitle(Client *c) {
 		XGetWMName(dpy, c->win, &name);
 	if(!name.nitems)
 		return;
-	if(name.encoding == XA_STRING) {
+	if(name.encoding == XA_STRING)
 		strncpy(c->name, (char *)name.value, sizeof c->name - 1);
-	}
 	else {
 		if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
 		&& n > 0 && *list)
0 removed the CONFIG variable from config.mk, renamed config.h into config.default.h, after first clone/extract one needs to copy config.default.h to config.h, that is easier than always heavy typing make CONFIG=blafasel' href='/acidbong/suckless/dwm/commit/config.default.h?h=5.2&id=b515765216c46246358256da6098ea2c07a93c84'>b515765 ^
12280f0 ^
3794c62 ^

f196b71 ^


04dec4c ^
338c083 ^
f196b71 ^



3794c62 ^
f196b71 ^
2d81b78 ^
3794c62 ^
04dec4c ^
3794c62 ^

338c083 ^
3794c62 ^
f6e41b0 ^
e461e60 ^
3794c62 ^
f196b71 ^

b515765 ^
04dec4c ^
19dcbc5 ^
2c477cf ^
0ea0343 ^
2c477cf ^
2aef8b9 ^
10bc0ce ^

f6e41b0 ^

2c477cf ^

338c083 ^
2c477cf ^

10bc0ce ^

















2c477cf ^
10bc0ce ^

















2c477cf ^
b515765 ^
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