diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-01 13:01:38 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-01 13:01:55 +0100 |
commit | 5ce194f15dddff403506255d1e67c101a7ebef7f (patch) | |
tree | 65b4dd3ee756942dbd42747428e4275150cb997e /tmux.h | |
parent | af21e76fdb36e6d2615c15f0d791eac6d1fd0062 (diff) | |
download | rtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.tar.gz rtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.tar.bz2 rtmux-5ce194f15dddff403506255d1e67c101a7ebef7f.zip |
Rename some tty_ctx members.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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. */ |