tweaks: reduce a bit of code duplication
This also removes a call of ungetch(), as it does not seem to be needed any more: nano does not lose a character when waking from suspension.
Этот коммит содержится в:
родитель
1bd17c44b0
Коммит
ca8317e820
19
src/winio.c
19
src/winio.c
@ -111,7 +111,7 @@ static bool reveal_cursor = FALSE;
|
|||||||
* buffer is empty. */
|
* buffer is empty. */
|
||||||
void get_key_buffer(WINDOW *win)
|
void get_key_buffer(WINDOW *win)
|
||||||
{
|
{
|
||||||
int input;
|
int input = ERR;
|
||||||
size_t errcount = 0;
|
size_t errcount = 0;
|
||||||
|
|
||||||
/* If the keystroke buffer isn't empty, get out. */
|
/* If the keystroke buffer isn't empty, get out. */
|
||||||
@ -125,38 +125,27 @@ void get_key_buffer(WINDOW *win)
|
|||||||
if (reveal_cursor)
|
if (reveal_cursor)
|
||||||
curs_set(1);
|
curs_set(1);
|
||||||
|
|
||||||
/* Read in the first character using whatever mode we're in. */
|
/* Read in the first keystroke using whatever mode we're in. */
|
||||||
|
while (input == ERR) {
|
||||||
input = wgetch(win);
|
input = wgetch(win);
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
if (the_window_resized) {
|
if (the_window_resized) {
|
||||||
ungetch(input);
|
|
||||||
regenerate_screen();
|
regenerate_screen();
|
||||||
input = KEY_WINCH;
|
input = KEY_WINCH;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (input == ERR && !waiting_mode) {
|
if (input == ERR && !waiting_mode) {
|
||||||
curs_set(0);
|
curs_set(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (input == ERR) {
|
|
||||||
/* If we've failed to get a character MAX_BUF_SIZE times in a row,
|
/* If we've failed to get a character MAX_BUF_SIZE times in a row,
|
||||||
* assume our input source is gone and die gracefully. We could
|
* assume our input source is gone and die gracefully. We could
|
||||||
* check if errno is set to EIO ("Input/output error") and die in
|
* check if errno is set to EIO ("Input/output error") and die in
|
||||||
* that case, but it's not always set properly. Argh. */
|
* that case, but it's not always set properly. Argh. */
|
||||||
if (++errcount == MAX_BUF_SIZE)
|
if (input == ERR && ++errcount == MAX_BUF_SIZE)
|
||||||
die(_("Too many errors from stdin"));
|
die(_("Too many errors from stdin"));
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
|
||||||
if (the_window_resized) {
|
|
||||||
regenerate_screen();
|
|
||||||
input = KEY_WINCH;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
input = wgetch(win);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
curs_set(0);
|
curs_set(0);
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user