diff options
author | nicm <nicm> | 2020-05-16 16:22:01 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 16:22:01 +0000 |
commit | ecbdcc256fd2c69c60c9d900a28922914d6b9896 (patch) | |
tree | b0aebdfbfee142db0ae36e929659a229c671582c /tmux.h | |
parent | 303d342d5fa5903983c08e4cae429e4f9480eea3 (diff) | |
download | rtmux-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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |