diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-15 07:45:17 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-15 07:45:17 +0000 |
commit | 1259f67a3c123c6cde811b01a175045731ca1661 (patch) | |
tree | 6e8186808cb48c1c3145db59f0ef13be9470229d /usr.bin/tmux/server.c | |
parent | 420c66102dff0eb493dc933d0e433b49fdc40e05 (diff) |
The default terminal size should be 80x24, not 80x25.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 71384915d27..b21fa1ed8cd 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.36 2009/09/14 11:25:35 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.37 2009/09/15 07:45:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -97,7 +97,7 @@ server_create_client(int fd) c->session = NULL; c->tty.sx = 80; - c->tty.sy = 25; + c->tty.sy = 24; screen_init(&c->status, c->tty.sx, 1, 0); c->message_string = NULL; |