aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2020-05-14 13:18:05 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2020-05-14 13:18:05 +0100
commit09a66451ce3df94120bb7d8486c89158bc5b85c6 (patch)
tree7284e9547c2588cc947ffde4b430f84c2b15a7ec /tmux.h
parent0bdbf47ef946b3535cc32b45ea8d971de5baddb5 (diff)
downloadrtmux-09a66451ce3df94120bb7d8486c89158bc5b85c6.tar.gz
rtmux-09a66451ce3df94120bb7d8486c89158bc5b85c6.tar.bz2
rtmux-09a66451ce3df94120bb7d8486c89158bc5b85c6.zip
Add screen write flags instead of individual bits and fix line length
calculation with padding.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index a708a609..99600f37 100644
--- a/tmux.h
+++ b/tmux.h
@@ -798,7 +798,9 @@ typedef void (*screen_write_init_ctx_cb)(struct screen_write_ctx *,
struct screen_write_ctx {
struct window_pane *wp;
struct screen *s;
- int sync;
+
+ int flags;
+#define SCREEN_WRITE_SYNC 0x1
screen_write_init_ctx_cb init_ctx_cb;
void *arg;