aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-02-26 13:26:44 +0000
committerTiago Cunha <tcunha@gmx.com>2010-02-26 13:26:44 +0000
commitecac081a555b6513b91c5e0b8c93fa753e41becf (patch)
tree87394a38f2586e7c88e495f6fbbebf1fef308b4b /tmux.h
parentb4c2710bf7e155586592e95f600e98cd8518f098 (diff)
downloadrtmux-ecac081a555b6513b91c5e0b8c93fa753e41becf.tar.gz
rtmux-ecac081a555b6513b91c5e0b8c93fa753e41becf.tar.bz2
rtmux-ecac081a555b6513b91c5e0b8c93fa753e41becf.zip
Sync OpenBSD patchset 648:
copy mode uses the real screen as backing and if it is updated while copying, strange things can happen. So, freeze reading from the pty while in copy mode.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 2c8a4d63..66c95aae 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.545 2010-02-18 12:35:16 tcunha Exp $ */
+/* $Id: tmux.h,v 1.546 2010-02-26 13:26:44 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -786,6 +786,7 @@ struct window_pane {
int flags;
#define PANE_REDRAW 0x1
+#define PANE_FREEZE 0x2
char *cmd;
char *shell;