termptyesc: remove unused parameter

This commit is contained in:
Boris Faure 2018-12-28 21:56:29 +01:00
parent 090f6a64f2
commit 7d668d79d1
1 changed files with 2 additions and 3 deletions

View File

@ -1182,8 +1182,7 @@ _handle_esc_csi_cpl(Termpty *ty, Eina_Unicode **ptr)
}
static void
_handle_esc_csi_dch(Termpty *ty, Eina_Unicode **ptr,
const Eina_Unicode * const end)
_handle_esc_csi_dch(Termpty *ty, Eina_Unicode **ptr)
{
Eina_Unicode *b = *ptr;
int arg = _csi_arg_get(ty, &b);
@ -1918,7 +1917,7 @@ CUF:
}
break;
case 'P': // erase and scrollback N chars
_handle_esc_csi_dch(ty, &b, be);
_handle_esc_csi_dch(ty, &b);
break;
case 'S': // scroll up N lines
arg = _csi_arg_get(ty, &b);