]> granicus.if.org Git - neomutt/commitdiff
fix: display correct help key
authorRichard Russon <rich@flatcap.org>
Mon, 24 Oct 2016 22:16:38 +0000 (23:16 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 24 Oct 2016 22:16:39 +0000 (23:16 +0100)
If you remap the help key, then press an unbound key, mutt still tells
you to press '?' for help.  This change makes mutt display a correct
binding.

Fixes: #214
keymap.c

index cd8c9a0432f9ddda1193de64d333d8b90c693a78..5c913b6a8a28a1240b6ee0e29bdee73979cc242d 100644 (file)
--- a/keymap.c
+++ b/keymap.c
@@ -858,6 +858,7 @@ void km_error_key (int menu)
     return;
   }
 
+  km_expand_key(buf, sizeof(buf), key);
   mutt_error (_("Key is not bound.  Press '%s' for help."), buf);
   return;
 }