pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbc464d
)
Use slow path if stdin is a tty
author
dok
<dok@grehack.fr>
Sat, 26 Jan 2019 14:49:15 +0000
(15:49 +0100)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Sun, 27 Jan 2019 14:26:04 +0000
(15:26 +0100)
If stdin is a tty and dmenu is ran with the fast option then it's
impossible to close stdin because the keyboard is already grabbed.
dmenu.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
5c835dd
..
6b8f51b
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-6,9
+6,7
@@
#include <string.h>
#include <strings.h>
#include <time.h>
-#ifdef __OpenBSD__
#include <unistd.h>
-#endif
#include <X11/Xlib.h>
#include <X11/Xatom.h>
@@
-754,7
+752,7
@@
main(int argc, char *argv[])
die("pledge");
#endif
- if (fast) {
+ if (fast
&& !isatty(0)
) {
grabkeyboard();
readstdin();
} else {