aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-07 06:47:38 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-07 06:47:38 +0000
commit77224aaf8bd1cf816054d968605a43145617d804 (patch)
tree2fff8a62e8f171fffd8c217ac9ea701fdd885393 /tmux.h
parent6f7d59d2791a8c6b3844df4b3bf059ed59acd363 (diff)
downloadrtmux-77224aaf8bd1cf816054d968605a43145617d804.tar.gz
rtmux-77224aaf8bd1cf816054d968605a43145617d804.tar.bz2
rtmux-77224aaf8bd1cf816054d968605a43145617d804.zip
Be more conservative about redrawing using flags.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 33d8ce83..58d17a9d 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.136 2008-06-06 20:02:27 nicm Exp $ */
+/* $Id: tmux.h,v 1.137 2008-06-07 06:47:38 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -649,6 +649,8 @@ struct client {
#define CLIENT_TERMINAL 0x1
#define CLIENT_PREFIX 0x2
#define CLIENT_MOUSE 0x4
+#define CLIENT_REDRAW 0x8
+#define CLIENT_STATUS 0x10
int flags;
struct session *session;