diff options
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 55aef4e1020..debbea42270 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.898 2019/05/13 20:10:23 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.899 2019/05/18 21:14:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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; |