mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Move sx,sy into tty rather than client.
This commit is contained in:
8
tmux.h
8
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
|
||||
|
Reference in New Issue
Block a user