aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-04-13 13:32:09 +0000
committernicm <nicm>2020-04-13 13:32:09 +0000
commit53d6b94e8aef09c0494ed8a53191063b605b3127 (patch)
tree72698a96f06dfb6206a1a810c6439838235aff42 /tmux.h
parent04cdd035250b93b728678d515b69690653dced4e (diff)
downloadrtmux-53d6b94e8aef09c0494ed8a53191063b605b3127.tar.gz
rtmux-53d6b94e8aef09c0494ed8a53191063b605b3127.tar.bz2
rtmux-53d6b94e8aef09c0494ed8a53191063b605b3127.zip
Move the NOHOOKS flag into the shared flags.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 68e111cb..88cf16d8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1385,6 +1385,7 @@ struct cmdq_shared {
int flags;
#define CMDQ_SHARED_REPEAT 0x1
#define CMDQ_SHARED_CONTROL 0x2
+#define CMDQ_SHARED_NOHOOKS 0x4
struct format_tree *formats;
@@ -1392,11 +1393,6 @@ struct cmdq_shared {
struct cmd_find_state current;
};
-/* Command queue flags. */
-#define CMDQ_FIRED 0x1
-#define CMDQ_WAITING 0x2
-#define CMDQ_NOHOOKS 0x4
-
/* Command queue callback. */
typedef enum cmd_retval (*cmdq_cb) (struct cmdq_item *, void *);