Commit 72a49dbb authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

browser, help: make <Bsp> page up also when terminfo mismatches terminal

No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
......@@ -462,6 +462,7 @@ functionptrtype parse_browser_input(int *kbinput)
{
if (!meta_key) {
switch (*kbinput) {
case BS_CODE:
case '-':
return do_page_up;
case ' ':
......
......@@ -567,6 +567,7 @@ functionptrtype parse_help_input(int *kbinput)
{
if (!meta_key) {
switch (*kbinput) {
case BS_CODE:
case '-':
return do_page_up;
case ' ':
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment