X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=266dd150f5c697f9d6e5c047823280e5b3b2e063;hb=af4667a85a11a1c001e60894a7ec7458c208bc0d;hp=e07574a65c2d2e6b9b393940117cdf126d5d19f8;hpb=3033d45d1c6d6f6c1a3fdfa546399f7f02f4a3e0;p=dwm.git diff --git a/dwm.c b/dwm.c index e07574a..266dd15 100644 --- a/dwm.c +++ b/dwm.c @@ -1280,15 +1280,15 @@ restack(void) { void run(void) { - char *p; - int r, xfd; fd_set rd; + int xfd; XEvent ev; /* main event loop, also reads status text from stdin */ XSync(dpy, False); xfd = ConnectionNumber(dpy); readin = True; + stext[sizeof stext - 1] = '\0'; /* 0-terminator is never touched */ while(running) { FD_ZERO(&rd); if(readin) @@ -1300,22 +1300,12 @@ run(void) { eprint("select failed\n"); } if(FD_ISSET(STDIN_FILENO, &rd)) { - switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) { - case -1: - strncpy(stext, strerror(errno), sizeof stext - 1); - stext[sizeof stext - 1] = '\0'; - readin = False; - break; - case 0: + if((readin = (stext == fgets(stext, sizeof stext - 1, stdin)))) + stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */ + else if(feof(stdin)) strncpy(stext, "EOF", 4); - readin = False; - break; - default: - for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0'); - for(; p >= stext && *p != '\n'; --p); - if(p > stext) - strncpy(stext, p + 1, sizeof stext); - } + else /* error occured */ + strncpy(stext, strerror(errno), sizeof stext - 1); drawbar(); } while(XPending(dpy)) { @@ -1584,8 +1574,8 @@ tile(void) { else nh = th - 2 * c->border; } - resize(c, nx, ny, nw, nh, True); - if((c->h < bh) || (c->h > nh) || (c->w < bh) || (c->w > nw)) + resize(c, nx, ny, nw, nh, RESIZEHINTS); + if((RESIZEHINTS) && ((c->h < bh) || (c->h > nh) || (c->w < bh) || (c->w > nw))) /* client doesn't accept size constraints */ resize(c, nx, ny, nw, nh, False); if(n > 1 && th != wah)