From 6f2edda7856529de964326d70561a36e2fb57184 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 5 Oct 2007 18:25:05 +0000 Subject: Have resize update a SESSION_UNATTACHED flag. --- tmux.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 147be57b..c319ae50 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.51 2007-10-05 14:23:28 nicm Exp $ */ +/* $Id: tmux.h,v 1.52 2007-10-05 18:25:05 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -423,6 +423,9 @@ struct session { struct window *window; struct window *last; struct windows windows; + +#define SESSION_UNATTACHED 0x1 /* not attached to any clients */ + int flags; }; ARRAY_DECL(sessions, struct session *); -- cgit