diff --git a/src/help.c b/src/help.c index f330b7a3..e928d2ae 100644 --- a/src/help.c +++ b/src/help.c @@ -499,7 +499,7 @@ void help_init(void) /* Now add our shortcut info. */ for (f = allfuncs; f != NULL; f = f->next) { - int scsfound = 0; + int tally = 0; if ((f->menus & currmenu) == 0) continue; @@ -507,10 +507,9 @@ void help_init(void) /* Let's simply show the first two shortcuts from the list. */ for (s = sclist; s != NULL; s = s->next) { if ((s->menus & currmenu) && s->func == f->func) { - scsfound++; /* Make the first column narrower (6) than the second (10), * but allow it to spill into the second, for "M-Space". */ - if (scsfound == 1) { + if (++tally == 1) { sprintf(ptr, "%s ", s->keystr); /* Unicode arrows take three bytes instead of one. */ ptr += (strstr(s->keystr, "\xE2") != NULL ? 8 : 6); @@ -521,9 +520,9 @@ void help_init(void) } } - if (scsfound == 0) + if (tally == 0) ptr += sprintf(ptr, "\t\t"); - else if (scsfound == 1) + else if (tally == 1) ptr += 10; /* The shortcut's help text. */