struct globals {
int cur_fline; /* signed */
int kbd_fd; /* fd to get input from */
+ int kbd_fd_orig_flags;
int less_gets_pos;
/* last position in last line, taking into account tabs */
size_t last_line_pos;
static void less_exit(int code)
{
set_tty_cooked();
+ if (!(G.kbd_fd_orig_flags & O_NONBLOCK))
+ ndelay_off(kbd_fd);
clear_line();
if (code < 0)
kill_myself_with_sig(- code); /* does not return */
try_ctty:
tty_fd = open(CURRENT_TTY, O_RDONLY);
if (tty_fd < 0) {
- /*
- * If all else fails, less 481 uses stdout. Mimic that.
- * Testcase where usually both ttyname(STDOUT_FILENO)
- * and open(CURRENT_TTY) fail:
- * su -s /bin/sh -c 'busybox less FILE' - nobody
- */
+ /* If all else fails, less 481 uses stdout. Mimic that */
tty_fd = STDOUT_FILENO;
}
}
- ndelay_on(tty_fd);
+ G.kbd_fd_orig_flags = ndelay_on(tty_fd);
kbd_fd = tty_fd; /* save in a global */
tcgetattr(kbd_fd, &term_orig);