aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 15:11:02 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 15:11:02 +0200
commit2ffdc1936cf13af5df0cc6d9415961dbe13b9cf8 (patch)
tree4409e43ea13ef9540ad320cbfe61c53c6bd84a8b /main.c
parent0fe52c63ea9382a940afa7573993218ead14c2cf (diff)
downloaddwm-2ffdc1936cf13af5df0cc6d9415961dbe13b9cf8.tar.zst
some other small fixes
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/main.c b/main.c
index 16ebbae..6bbb28e 100644
--- a/main.c
+++ b/main.c
@@ -196,6 +196,7 @@ main(int argc, char *argv[])
XSetErrorHandler(NULL);
xerrorxlib = XSetErrorHandler(xerror);
+ XSync(dpy, False);
/* init atoms */
wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
@@ -269,13 +270,6 @@ main(int argc, char *argv[])
if(i < 0)
eprint("select failed\n");
else if(i > 0) {
- if(FD_ISSET(xfd, &rd)) {
- while(XPending(dpy)) {
- XNextEvent(dpy, &ev);
- if(handler[ev.type])
- (handler[ev.type])(&ev); /* call handler */
- }
- }
if(readin && FD_ISSET(STDIN_FILENO, &rd)) {
readin = NULL != fgets(stext, sizeof(stext), stdin);
if(readin)
@@ -284,9 +278,15 @@ main(int argc, char *argv[])
strcpy(stext, "broken pipe");
drawstatus();
}
+ if(FD_ISSET(xfd, &rd)) {
+ while(XPending(dpy)) {
+ XNextEvent(dpy, &ev);
+ if(handler[ev.type])
+ (handler[ev.type])(&ev); /* call handler */
+ }
+ }
}
}
-
cleanup();
XCloseDisplay(dpy);