1
1

input: give feedback for all unbound keys also in the help viewer

Silently doing nothing robs the user of a bit of information.

Signed-off-by: Brand Huntsman <alpha@qzx.com>
Этот коммит содержится в:
Brand Huntsman 2018-08-29 03:25:26 -06:00 коммит произвёл Benno Schulenberg
родитель 13615d0953
Коммит 3270aac7db

Просмотреть файл

@ -1581,7 +1581,7 @@ void unbound_key(int code)
statusline(ALERT, _("Unbound key: M-%c"), toupper(code));
} else if (code < 0x20)
statusline(ALERT, _("Unbound key: ^%c"), code + 0x40);
else if (currmenu != MHELP)
else
statusline(ALERT, _("Unbound key: %c"), code);
}