diff options
author | 2010-11-22 21:13:13 +0000 | |
---|---|---|
committer | 2010-11-22 21:13:13 +0000 | |
commit | 3db94e9e901aeeae7166eb40e3c14559f4c6ed5c (patch) | |
tree | 6a2fa54079b7d093ac04c4da56111b02ea69a869 /usr.bin/tmux/tmux.h | |
parent | Remove old comment about constab[] being eventually generated by config(8). (diff) | |
download | wireguard-openbsd-3db94e9e901aeeae7166eb40e3c14559f4c6ed5c.tar.xz wireguard-openbsd-3db94e9e901aeeae7166eb40e3c14559f4c6ed5c.zip |
There is somewhere that WINDOW_HIDDEN is getting set when it shouldn't
be and I can't find it, but the flag itself is a useless optimisation
that only applies to automatic-resize windows, so just dispose of it
entirely.
Fixes problems reported by Nicholas Riley.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 782b21d827e..1f35566fd4f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.246 2010/11/11 20:51:30 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.247 2010/11/22 21:13:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -843,9 +843,8 @@ struct window { int flags; #define WINDOW_BELL 0x1 -#define WINDOW_HIDDEN 0x2 -#define WINDOW_ACTIVITY 0x4 -#define WINDOW_REDRAW 0x8 +#define WINDOW_ACTIVITY 0x2 +#define WINDOW_REDRAW 0x4 struct options options; |