Commit a878f5f1 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

screen: catch a window resize also when the keyboard is in nodelay mode

This fixes https://savannah.gnu.org/bugs/?47954.
No related merge requests found
Showing with 18 additions and 5 deletions
+18 -5
...@@ -42,7 +42,18 @@ static bool seen_wide = FALSE; ...@@ -42,7 +42,18 @@ static bool seen_wide = FALSE;
/* Whether we've seen a multicolumn character in the current line. */ /* Whether we've seen a multicolumn character in the current line. */
#ifndef NANO_TINY #ifndef NANO_TINY
static sig_atomic_t sigwinch_counter_save = 0; static sig_atomic_t last_sigwinch_counter = 0;
/* Did we receive a SIGWINCH since we were last called? */
bool the_window_resized(void)
{
if (sigwinch_counter == last_sigwinch_counter)
return FALSE;
last_sigwinch_counter = sigwinch_counter;
regenerate_screen();
return TRUE;
}
#endif #endif
/* Control character compatibility: /* Control character compatibility:
...@@ -123,6 +134,11 @@ void get_key_buffer(WINDOW *win) ...@@ -123,6 +134,11 @@ void get_key_buffer(WINDOW *win)
/* Read in the first character using whatever mode we're in. */ /* Read in the first character using whatever mode we're in. */
input = wgetch(win); input = wgetch(win);
#ifndef NANO_TINY
if (the_window_resized())
input = KEY_WINCH;
#endif
if (input == ERR && nodelay_mode) if (input == ERR && nodelay_mode)
return; return;
...@@ -135,10 +151,7 @@ void get_key_buffer(WINDOW *win) ...@@ -135,10 +151,7 @@ void get_key_buffer(WINDOW *win)
handle_hupterm(0); handle_hupterm(0);
#ifndef NANO_TINY #ifndef NANO_TINY
/* Did we get a SIGWINCH since we were last here? */ if (the_window_resized()) {
if (sigwinch_counter != sigwinch_counter_save) {
sigwinch_counter_save = sigwinch_counter;
regenerate_screen();
input = KEY_WINCH; input = KEY_WINCH;
break; break;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment