about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-11-25 19:26:16 +0100
committerarg@mig29 <unknown>2006-11-25 19:26:16 +0100
commit478f6f95f1cb349e93bfe49ae6721c222c3a1a6d (patch)
tree5485aab4defb686527407b5d4a83c62ea978c0f4
parent44411d2d48206d6cd87ce5f9c0ddc365e598928b (diff)
downloaddwm-478f6f95f1cb349e93bfe49ae6721c222c3a1a6d.tar.gz
applied Manuels patch (thanks to Manuel!)
-rw-r--r--dwm.12
-rw-r--r--main.c35
2 files changed, 22 insertions, 15 deletions
diff --git a/dwm.1 b/dwm.1
index 93d6578..aafce8f 100644
--- a/dwm.1
+++ b/dwm.1
@@ -22,7 +22,7 @@ dwm contains a small status bar which displays all available tags, the mode,
 the title of the focused window, and the text read from standard input. The
 selected tags are indicated with a different color. The tags of the focused
 window are indicated with a small point in the top left corner.  The tags which
-are applied to any client are indicated with a small point in the bottom
+are applied to one or more clients are indicated with a small point in the bottom
 right corner.
 .P
 dwm draws a 1-pixel border around windows to indicate the focus state.
diff --git a/main.c b/main.c
index f114bae..750366e 100644
--- a/main.c
+++ b/main.c
@@ -267,22 +267,29 @@ main(int argc, char *argv[]) {
 		if(readin)
 			FD_SET(STDIN_FILENO, &rd);
 		FD_SET(xfd, &rd);
-		r = select(xfd + 1, &rd, NULL, NULL, NULL);
-		if((r == -1) && (errno == EINTR))
-			continue;
-		if(r > 0) {
-			if(readin && FD_ISSET(STDIN_FILENO, &rd)) {
-				readin = NULL != fgets(stext, sizeof(stext), stdin);
-				if(readin)
-					stext[strlen(stext) - 1] = 0;
-				else 
-					strcpy(stext, "broken pipe");
-				drawstatus();
+		if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
+			if(errno == EINTR)
+				continue;
+			else
+				eprint("select failed\n");
+		}
+		if(FD_ISSET(STDIN_FILENO, &rd)) {
+			switch(r = read(STDIN_FILENO, stext, sizeof(stext))) {
+			case -1:
+				strncpy(stext, strerror(errno), sizeof(stext));
+				readin = False;
+				break;
+			case 0:
+				strncpy(stext, "EOF", sizeof(stext));
+				readin = False;
+				break;
+			default:
+				stext[r-1] = 0;
 			}
+			drawstatus();
 		}
-		else if(r < 0)
-			eprint("select failed\n");
-		procevent();
+		if(FD_ISSET(xfd, &rd))
+			procevent();
 	}
 	cleanup();
 	XCloseDisplay(dpy);
the previous revision' href='/akkartik/mu/blame/html/034exclusive_container.cc.html?h=hlt&id=64586540eccbc0880341782d329b419ab9d002de'>^
672e3e50 ^
76755b28 ^







672e3e50 ^

4bbd3ded ^

76755b28 ^
672e3e50 ^


9570363a ^


d009e158 ^
672e3e50 ^




76755b28 ^

672e3e50 ^

90560d71 ^



672e3e50 ^












76755b28 ^
672e3e50 ^


9570363a ^


d009e158 ^
672e3e50 ^




9570363a ^


d009e158 ^
672e3e50 ^





76755b28 ^

90560d71 ^
d009e158 ^
76755b28 ^
d009e158 ^
9542bb11 ^

76755b28 ^


d009e158 ^
4fe9f5e8 ^

76755b28 ^
d009e158 ^

















9542bb11 ^

76755b28 ^








9542bb11 ^

90560d71 ^

76755b28 ^
65361948 ^
672e3e50 ^
90560d71 ^
65361948 ^
672e3e50 ^
65361948 ^

672e3e50 ^

65361948 ^
d009e158 ^























65361948 ^



90560d71 ^

65361948 ^
76755b28 ^
65361948 ^





90560d71 ^
76755b28 ^
65361948 ^
dbe12410 ^



90560d71 ^

dbe12410 ^


9570363a ^


dbe12410 ^




0e4a335e ^





76755b28 ^



0e4a335e ^


























672e3e50 ^



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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270