Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
a98b5e5
)
simplified
author
Anselm R. Garbe <
[email protected]
>
Fri, 2 Nov 2007 16:07:14 +0000
(17:07 +0100)
committer
Anselm R. Garbe <
[email protected]
>
Fri, 2 Nov 2007 16:07:14 +0000
(17:07 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
c595a51
..
266dd15
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1300,15
+1300,12
@@
run(void) {
eprint("select failed\n");
}
if(FD_ISSET(STDIN_FILENO, &rd)) {
eprint("select failed\n");
}
if(FD_ISSET(STDIN_FILENO, &rd)) {
- if(
stext == fgets(stext, sizeof stext - 1, stdin
))
+ if(
(readin = (stext == fgets(stext, sizeof stext - 1, stdin))
))
stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */
stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */
- else {
- readin = False;
- if(feof(stdin))
- strncpy(stext, "EOF", 4);
- else /* error occured */
- strncpy(stext, strerror(errno), sizeof stext - 1);
- }
+ else if(feof(stdin))
+ strncpy(stext, "EOF", 4);
+ else /* error occured */
+ strncpy(stext, strerror(errno), sizeof stext - 1);
drawbar();
}
while(XPending(dpy)) {
drawbar();
}
while(XPending(dpy)) {