aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2020-05-01 13:01:38 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2020-05-01 13:01:55 +0100
commit5ce194f15dddff403506255d1e67c101a7ebef7f (patch)
tree65b4dd3ee756942dbd42747428e4275150cb997e /tmux.h
parentaf21e76fdb36e6d2615c15f0d791eac6d1fd0062 (diff)
downloadrtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.tar.gz
rtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.tar.bz2
rtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.zip
Rename some tty_ctx members.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tmux.h b/tmux.h
index 94d130ba..e00a4f96 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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. */