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
master
Benno Schulenberg 2015-08-01 08:41:36 +00:00
parent e919c22793
commit 45f873a6a7
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,9 @@
2015-08-01 Benno Schulenberg <bensberg@justemail.net>
* 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 <bensberg@justemail.net>
* src/text.c (do_cutword, do_cut_prev_word, do_cut_next_word),

View File

@ -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;