tweaks: drop an unneeded call of keypad() -- we never read from topwin

The title bar is used only for showing things, never for typing anything
into.  That is: we never call wgetch() with 'topwin' as an argument.
master
Benno Schulenberg 2019-12-29 14:14:08 +01:00
parent 6d916c6c4a
commit 67b89459d5
1 changed files with 0 additions and 1 deletions

View File

@ -646,7 +646,6 @@ void window_init(void)
/* When not disabled, turn escape-sequence translation on. */
if (!ISSET(RAW_SEQUENCES)) {
keypad(topwin, TRUE);
keypad(edit, TRUE);
keypad(bottomwin, TRUE);
}