aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2018-08-18 20:08:52 +0000
committernicm <nicm>2018-08-18 20:08:52 +0000
commitbd2896b65e8fd205e3207ed70558d9ebfd106909 (patch)
tree1001e1beeb6e0cf1332e246af8bcbdc4898c9803 /tmux.h
parent3bc08b0dc0c9868ba5acaa7b8f12159a9a66cf4a (diff)
downloadrtmux-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.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 711b3ec6..2f104e22 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;