_absolute is redundant, just use tty_region.

This commit is contained in:
Nicholas Marriott
2009-10-12 09:16:59 +00:00
parent f05b32f7ad
commit 972a6f5656
3 changed files with 6 additions and 4 deletions

View File

@ -1050,7 +1050,7 @@ server_handle_client(struct client *c)
* tty_region/tty_reset/tty_update_mode already take care of not
* resetting things that are already in their default state.
*/
tty_region_absolute(&c->tty, 0, c->tty.sy - 1);
tty_region(&c->tty, 0, c->tty.sy - 1);
status = options_get_number(oo, "status");
if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)