commit 03943eb279a154e7c2eceb510a379cafeb4aa56f from: Stefan Sperling date: Wed Jul 18 07:34:28 2018 UTC ncurses does not return ERR with errno == EINTR; don't expect it commit - 55198a88d8490309f60f25b36b09ec8be9976f04 commit + 03943eb279a154e7c2eceb510a379cafeb4aa56f blob - 45a8fe04d48e1908069d942f6e70917321e90bf5 blob + dfae536130078146c114a9fda24e686a486c210a --- tog/tog.c +++ tog/tog.c @@ -764,12 +764,6 @@ show_log_view(struct got_object_id *start_id, struct g nodelay(stdscr, TRUE); switch (ch) { case ERR: - if (errno) { - if (errno == EINTR) - break; - err = got_error_from_errno(); - goto done; - } break; case 'q': done = 1;