>From 9d06ede6fba925799851e49511f376669d720cd9 Mon Sep 17 00:00:00 2001 From: Brand Huntsman Date: Wed, 29 Aug 2018 03:25:26 -0600 Subject: [PATCH 3/3] show unbound key error for all keys in help Signed-off-by: Brand Huntsman --- src/nano.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nano.c b/src/nano.c index 25b30c1d..02518383 100644 --- a/src/nano.c +++ b/src/nano.c @@ -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); } -- 2.16.4