summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-08-28 07:49:25 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-08-28 07:49:25 +0000
commit158c758daaf79bc290f2f874b8546c10783f5c64 (patch)
tree32ed5c219bb8adfd2f9139565abc28c25da84619 /usr.bin/tmux/tmux.h
parent7b8fc810f571a0f740104617fd3c1863a8ef1dd6 (diff)
Only do the automatic-rename dance if the pane has changed (seen output,
or new active pane).
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 355f27c0e5d..9f5d8b81d27 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.531 2015/07/29 11:56:02 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.532 2015/08/28 07:49:24 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -826,6 +826,7 @@ struct window_pane {
#define PANE_RESIZE 0x8
#define PANE_FOCUSPUSH 0x10
#define PANE_INPUTOFF 0x20
+#define PANE_CHANGED 0x40
int argc;
char **argv;