diff options
author | nicm <nicm> | 2019-05-18 21:14:10 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-18 21:14:10 +0000 |
commit | 82ebd98c5f874cd10365d9563feccfbb8da188f4 (patch) | |
tree | f1063858add8b47a2a34ba7a1df03f8c9b39867d /tmux.h | |
parent | 9b83b1daa6caee4d2c665c26da37866712c555a8 (diff) | |
download | rtmux-82ebd98c5f874cd10365d9563feccfbb8da188f4.tar.gz rtmux-82ebd98c5f874cd10365d9563feccfbb8da188f4.tar.bz2 rtmux-82ebd98c5f874cd10365d9563feccfbb8da188f4.zip |
Move the single command flag (CMD_CONTROL) into the shared flags.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1285,9 +1285,6 @@ struct cmd { char *file; u_int line; -#define CMD_CONTROL 0x1 - int flags; - TAILQ_ENTRY(cmd) qentry; }; @@ -1316,6 +1313,7 @@ struct cmdq_shared { int flags; #define CMDQ_SHARED_REPEAT 0x1 +#define CMDQ_SHARED_CONTROL 0x2 struct format_tree *formats; |