From 1d2bd864f25a58ab85a6f9f0a448f3a69d8491cd Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 Apr 2020 06:20:50 +0000 Subject: Add a flag to protect against nested syncs and add some extra logging to redrawing. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index b791f5af..16cf414b 100644 --- a/tmux.h +++ b/tmux.h @@ -1244,6 +1244,7 @@ struct tty { #define TTY_BLOCK 0x80 #define TTY_HAVEDA 0x100 #define TTY_HAVEDSR 0x200 +#define TTY_SYNCING 0x400 int flags; struct tty_term *term; -- cgit