commit 45f873a6a7d54dae35d03506394884e04aab696f
parent e919c22793e826268b22ace8d1f0eae2400551be
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Sat, 1 Aug 2015 08:41:36 +0000
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
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -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),
diff --git 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;