aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui-terminal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-terminal.c b/ui-terminal.c
index 6a4331f..8cdd655 100644
--- a/ui-terminal.c
+++ b/ui-terminal.c
@@ -649,7 +649,7 @@ static bool ui_init(Ui *ui, Vis *vis) {
errno = 0;
if (!(tui->termkey = ui_termkey_new(STDIN_FILENO))) {
/* work around libtermkey bug which fails if stdin is /dev/null */
- if (errno == EBADF && !isatty(STDIN_FILENO)) {
+ if (errno == EBADF) {
errno = 0;
if (!(tui->termkey = ui_termkey_reopen(ui, STDIN_FILENO)) && errno == ENXIO)
tui->termkey = termkey_new_abstract(term, UI_TERMKEY_FLAGS);