Rename cmd_q dead flag to a general flags bitmask (will be more flags later).

This commit is contained in:
nicm
2015-09-16 22:24:54 +00:00
parent 16ee4de5df
commit a4b4b29987
5 changed files with 11 additions and 7 deletions

3
tmux.h
View File

@ -1305,7 +1305,8 @@ TAILQ_HEAD(cmd_q_items, cmd_q_item);
/* Command queue. */
struct cmd_q {
int references;
int dead;
int flags;
#define CMD_Q_DEAD 0x1
struct client *client;
int client_exit;