summaryrefslogtreecommitdiffstats
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-10-12 09:16:59 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-10-12 09:16:59 +0000
commit972a6f565660a7ca5c0307c1085825a254fba20e (patch)
tree81634cab7dc23c522397e18ad085332dbe8de22b /server.c
parentf05b32f7adc7de4dac3afa59ce91986202f17769 (diff)
_absolute is redundant, just use tty_region.
Diffstat (limited to 'server.c')
-rw-r--r--server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.c b/server.c
index fab8d886..6360be1d 100644
--- a/server.c
+++ b/server.c
@@ -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)