Rename some tty_ctx members.

This commit is contained in:
Nicholas Marriott
2020-05-01 13:01:38 +01:00
parent af21e76fdb
commit 5ce194f15d
2 changed files with 46 additions and 46 deletions

12
tmux.h
View File

@ -1307,19 +1307,19 @@ struct tty_ctx {
u_int orupper;
u_int orlower;
/* Pane offset. */
/* Target region (usually pane) offset and size. */
u_int xoff;
u_int yoff;
/* The background colour used for clearing (erasing). */
u_int bg;
/* Window offset and size. */
/* Containing region (usually window) offset and size. */
int bigger;
u_int ox;
u_int oy;
u_int sx;
u_int sy;
u_int wox;
u_int woy;
u_int wsx;
u_int wsy;
};
/* Saved message entry. */