summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2010-02-19 00:03:21 +0000
committernicm <nicm@openbsd.org>2010-02-19 00:03:21 +0000
commit4b40d1a2fbb8564250ddabd7cdca92701c0050b1 (patch)
treea3d45dd726fd3a52e22543f549aaa5dbf3545ff3 /usr.bin/tmux/tmux.h
parentdo not zero fields which are already zero; from cnst (diff)
downloadwireguard-openbsd-4b40d1a2fbb8564250ddabd7cdca92701c0050b1.tar.xz
wireguard-openbsd-4b40d1a2fbb8564250ddabd7cdca92701c0050b1.zip
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 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 446cd5bd10e..9c650c47899 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.207 2010/02/11 20:39:40 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.208 2010/02/19 00:03:21 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -787,6 +787,7 @@ struct window_pane {
int flags;
#define PANE_REDRAW 0x1
+#define PANE_FREEZE 0x2
char *cmd;
char *shell;