diff options
author | nicm <nicm> | 2018-08-18 20:08:52 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-08-18 20:08:52 +0000 |
commit | bd2896b65e8fd205e3207ed70558d9ebfd106909 (patch) | |
tree | 1001e1beeb6e0cf1332e246af8bcbdc4898c9803 /tmux.h | |
parent | 3bc08b0dc0c9868ba5acaa7b8f12159a9a66cf4a (diff) | |
download | rtmux-bd2896b65e8fd205e3207ed70558d9ebfd106909.tar.gz rtmux-bd2896b65e8fd205e3207ed70558d9ebfd106909.tar.bz2 rtmux-bd2896b65e8fd205e3207ed70558d9ebfd106909.zip |
SESSION_UNATTACHED flag is no longer necessary now we have an attached
count instead.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -938,9 +938,8 @@ struct session { struct hooks *hooks; struct options *options; -#define SESSION_UNATTACHED 0x1 /* not attached to any clients */ -#define SESSION_PASTING 0x2 -#define SESSION_ALERTED 0x4 +#define SESSION_PASTING 0x1 +#define SESSION_ALERTED 0x2 int flags; u_int attached; |