aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-05 18:25:05 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-05 18:25:05 +0000
commit6f2edda7856529de964326d70561a36e2fb57184 (patch)
treee9434ef87cb5ac357d12bbe0ec8e66e882b32e09 /tmux.h
parent1e252b9e9a1535298d44f976a5cd42bf136fe575 (diff)
downloadrtmux-6f2edda7856529de964326d70561a36e2fb57184.tar.gz
rtmux-6f2edda7856529de964326d70561a36e2fb57184.tar.bz2
rtmux-6f2edda7856529de964326d70561a36e2fb57184.zip
Have resize update a SESSION_UNATTACHED flag.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
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 <nicm@users.sourceforge.net>
@@ -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 *);