diff options
author | nicm <nicm> | 2020-01-28 08:06:11 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-01-28 08:06:11 +0000 |
commit | 24350879cdfb9ef23dee0da409b621e9830d8baf (patch) | |
tree | 827c222380b51867c7a13102840377853f364b0a /tmux.h | |
parent | 2c38e01b548553aa162f9f126147b5ed64fd1700 (diff) | |
download | rtmux-24350879cdfb9ef23dee0da409b621e9830d8baf.tar.gz rtmux-24350879cdfb9ef23dee0da409b621e9830d8baf.tar.bz2 rtmux-24350879cdfb9ef23dee0da409b621e9830d8baf.zip |
Add a define for flags meaning a client is not attached, and fix
unattached counter, reported by Thomas Sattler.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1582,6 +1582,10 @@ struct client { CLIENT_REDRAWSTATUSALWAYS| \ CLIENT_REDRAWBORDERS| \ CLIENT_REDRAWOVERLAY) +#define CLIENT_UNATTACHEDFLAGS \ + (CLIENT_DEAD| \ + CLIENT_SUSPENDED| \ + CLIENT_DETACHING) #define CLIENT_NOSIZEFLAGS \ (CLIENT_DEAD| \ CLIENT_SUSPENDED| \ |