diff options
author | nicm <nicm> | 2021-12-10 12:42:37 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-12-10 12:42:37 +0000 |
commit | db3aabcc34464940c286d7ce3abc8f3edc94b7bc (patch) | |
tree | a8ddf220a49c787f87c469205387a21c5e0eeee9 /tmux.h | |
parent | d721fb2a9fd70c157abb8540d4c50fca654f9f4d (diff) | |
download | rtmux-db3aabcc34464940c286d7ce3abc8f3edc94b7bc.tar.gz rtmux-db3aabcc34464940c286d7ce3abc8f3edc94b7bc.tar.bz2 rtmux-db3aabcc34464940c286d7ce3abc8f3edc94b7bc.zip |
Add a NOBLOCK flag rather than adding amount to wait for when
dealing with potentially-long sequences. GitHub issue 3001.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1311,7 +1311,7 @@ struct tty { #define TTY_NOCURSOR 0x1 #define TTY_FREEZE 0x2 #define TTY_TIMER 0x4 -/* 0x8 unused */ +#define TTY_NOBLOCK 0x8 #define TTY_STARTED 0x10 #define TTY_OPENED 0x20 /* 0x40 unused */ |