shortcuts M-\ and M-/ for First Line and Last Line to the help
viewer, instead of ^Y and ^V, which are already taken for Page
Up and Page Down. Also, stop them from aborting the viewer.
+ * src/help.c (do_help): Remove superfluous abortion variable.
2014-04-14 Benno Schulenberg <bensberg@justemail.net>
* src/{proto.h,cut.c,nano.c,text.c}: Remove the unused parameter
{
int kbinput = ERR;
bool meta_key, func_key, old_no_help = ISSET(NO_HELP);
- bool abort = FALSE;
- /* Whether we should abort the help browser. */
size_t line = 0;
/* The line number in help_text of the first displayed help
* line. This variable is zero-based. */
if (last_line > 0)
last_line--;
- while (!abort) {
+ while (TRUE) {
size_t i;
/* Display the help text if we don't have a key, or if the help
if (line + (editwinrows - 1) < last_line)
line = last_line - (editwinrows - 1);
}
- /* Abort the help browser. */
} else if (f->scfunc == do_exit) {
- abort = TRUE;
- break;
+ /* Abort the help browser. */
+ break;
}
}