projects
/
suckless
/
slstatus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f7a34f
)
fflush(stdout) to print line by line if stdout is not a tty
author
Josuah Demangeon
<mail@josuah.net>
Tue, 8 May 2018 13:13:56 +0000
(15:13 +0200)
committer
Aaron Marcher
<me@drkhsh.at>
Tue, 8 May 2018 13:18:32 +0000
(15:18 +0200)
To reproduce the issue:
$ slstatus -s | tee
then it would print only when the stdout buffer is full, by block
of multiple lines.
fflush() makes sure the line is printed at every loop iteration
slstatus.c
patch
|
blob
|
history
diff --git
a/slstatus.c
b/slstatus.c
index c1cf8ac080280b5c90f2021d0e369c88bb42e528..5842b3e804df207c574b9680cf8e2ab15d6d0685 100644
(file)
--- a/
slstatus.c
+++ b/
slstatus.c
@@
-98,6
+98,7
@@
main(int argc, char *argv[])
if (sflag) {
printf("%s\n", status);
+ fflush(stdout);
} else {
XStoreName(dpy, DefaultRootWindow(dpy), status);
XSync(dpy, False);