aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-05-16 16:22:01 +0000
committernicm <nicm>2020-05-16 16:22:01 +0000
commitecbdcc256fd2c69c60c9d900a28922914d6b9896 (patch)
treeb0aebdfbfee142db0ae36e929659a229c671582c /tmux.h
parent303d342d5fa5903983c08e4cae429e4f9480eea3 (diff)
downloadrtmux-ecbdcc256fd2c69c60c9d900a28922914d6b9896.tar.gz
rtmux-ecbdcc256fd2c69c60c9d900a28922914d6b9896.tar.bz2
rtmux-ecbdcc256fd2c69c60c9d900a28922914d6b9896.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 3bd37f05..921a51f9 100644
--- a/tmux.h
+++ b/tmux.h
@@ -796,7 +796,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;