From 77224aaf8bd1cf816054d968605a43145617d804 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 7 Jun 2008 06:47:38 +0000 Subject: Be more conservative about redrawing using flags. --- tmux.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tmux.h') 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 @@ -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; -- cgit