aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:50:36 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-11 17:50:36 +0000
commit03d531ebc6058f0c3d4f5d2a5471255d23c0b93e (patch)
tree7d4f79ccbee7673ee6fea28ab9c91e8e8803655b /tmux.h
parent65378588acc59fe1cf5121dc41aa782812b8033d (diff)
downloadrtmux-03d531ebc6058f0c3d4f5d2a5471255d23c0b93e.tar.gz
rtmux-03d531ebc6058f0c3d4f5d2a5471255d23c0b93e.tar.bz2
rtmux-03d531ebc6058f0c3d4f5d2a5471255d23c0b93e.zip
Move sx,sy into tty rather than client.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index 6a5a259c..8dcee8a7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.267 2009-02-11 17:04:39 nicm Exp $ */
+/* $Id: tmux.h,v 1.268 2009-02-11 17:50:36 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -712,6 +712,9 @@ SLIST_HEAD(tty_terms, tty_term);
struct tty {
char *path;
+ u_int sx;
+ u_int sy;
+
u_int cx;
u_int cy;
@@ -762,9 +765,6 @@ struct client {
struct timeval status_timer;
struct timeval repeat_timer;
- u_int sx;
- u_int sy;
-
struct screen status;
#define CLIENT_TERMINAL 0x1