Merge branch 'remove-deprecated-things'

This commit is contained in:
Daniel Eklöf 2020-12-09 20:53:05 +01:00
commit 3e25faeae7
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
6 changed files with 11 additions and 116 deletions

View file

@ -87,7 +87,6 @@ execute_binding(struct seat *seat, struct terminal *term,
case BIND_ACTION_NONE:
return true;
case BIND_ACTION_SCROLLBACK_UP:
case BIND_ACTION_SCROLLBACK_UP_PAGE:
cmd_scrollback_up(term, term->rows);
return true;
@ -100,7 +99,6 @@ execute_binding(struct seat *seat, struct terminal *term,
cmd_scrollback_up(term, 1);
return true;
case BIND_ACTION_SCROLLBACK_DOWN:
case BIND_ACTION_SCROLLBACK_DOWN_PAGE:
cmd_scrollback_down(term, term->rows);
return true;