Skip to content

Commit

Permalink
maple/more.c: more(): Key 'H' and 'F1' now open the help page when …
Browse files Browse the repository at this point in the history
…pmore is disabled.
  • Loading branch information
IepIweidieng committed Jan 25, 2019
1 parent 17b5a87 commit a98db13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion maple/more.c
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,11 @@ more(
shift = 0;
}
*/
else if ((key == 'h') || (key == '?'))
else if ((key == 'H') || (key == 'h') || (key == '?')
#ifdef KEY_F1
|| (key == KEY_F1)
#endif
)
{
film_out(FILM_MORE, -1);
shift = 0;
Expand Down

0 comments on commit a98db13

Please sign in to comment.