Remove unused variable, from Ben Boeckel.

pull/432/head
nicm 2016-05-23 20:03:14 +00:00
parent fdd368a294
commit e81a92449e
1 changed files with 1 additions and 2 deletions

View File

@ -423,10 +423,9 @@ void
window_copy_previous_paragraph(struct window_pane *wp)
{
struct window_copy_mode_data *data = wp->modedata;
u_int ox, oy;
u_int oy;
oy = screen_hsize(data->backing) + data->cy - data->oy;
ox = window_copy_find_length(wp, oy);
while (oy > 0 && window_copy_find_length(wp, oy) == 0)
oy--;