From bd2896b65e8fd205e3207ed70558d9ebfd106909 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 Aug 2018 20:08:52 +0000 Subject: SESSION_UNATTACHED flag is no longer necessary now we have an attached count instead. --- tmux.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tmux.h') 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; -- cgit