From: Benno Schulenberg Date: Sat, 1 Aug 2015 08:41:36 +0000 (+0000) Subject: Showing also the dedicated keys in the ^G help text, X-Git-Tag: v2.5.0~126 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=45f873a6a7d54dae35d03506394884e04aab696f;p=nano.git Showing also the dedicated keys in the ^G help text, to clarify some keys and to see which ones can be rebound. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5336 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 4376ba1c..11fc3c8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ 2015-08-01 Benno Schulenberg * src/nano.c (precalc_multicolorinfo): Set each multiline-color value instead of OR-ing it. This fixes Savannah bug #45640. + * src/help.c (help_init): Show also the dedicated keys in the + ^G help text. This helps to clarify some keys, and helps to + see which ones could easily be rebound. 2015-07-31 Benno Schulenberg * src/text.c (do_cutword, do_cut_prev_word, do_cut_next_word), diff --git a/src/help.c b/src/help.c index e43665a7..a6246bae 100644 --- a/src/help.c +++ b/src/help.c @@ -410,9 +410,6 @@ void help_init(void) /* Let's simply show the first two shortcuts from the list. */ for (s = sclist, scsfound = 0; s != NULL; s = s->next) { - if (s->type == RAWINPUT) - continue; - if ((s->menus & currmenu) == 0) continue;