From 82ebd98c5f874cd10365d9563feccfbb8da188f4 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 May 2019 21:14:10 +0000 Subject: Move the single command flag (CMD_CONTROL) into the shared flags. --- tmux.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index afecd5b6..4317bf0b 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit v1.2.3