aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-05-16 15:27:08 +0000
committernicm <nicm>2020-05-16 15:27:08 +0000
commit379ca54c80837d09dff53ffa7b9ea3b80d87096b (patch)
treeb8082ab0152b162a53dff54eadb5e0ed59f895f1 /tmux.h
parentedeb81ba9e7ef3665f055cc54fee6cfdb3979fea (diff)
downloadrtmux-379ca54c80837d09dff53ffa7b9ea3b80d87096b.tar.gz
rtmux-379ca54c80837d09dff53ffa7b9ea3b80d87096b.tar.bz2
rtmux-379ca54c80837d09dff53ffa7b9ea3b80d87096b.zip
Rename and tidy some stuff in struct tty_ctx.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/tmux.h b/tmux.h
index c2e7b099..e9a5db8a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1305,19 +1305,21 @@ struct tty_ctx {
u_int orupper;
u_int orlower;
- /* Pane offset. */
+ /* Target region (usually pane) offset and size. */
u_int xoff;
u_int yoff;
+ u_int sx;
+ u_int sy;
/* 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. */