diff options
author | 2017-04-17 06:40:32 +0000 | |
---|---|---|
committer | 2017-04-17 06:40:32 +0000 | |
commit | c409818b0213d7776f44d247a6ea9408417afb15 (patch) | |
tree | 255b9d958202f142a2476ac962680611eb312407 /usr.bin/tmux/tmux.h | |
parent | Memory leak, from David CARLIER. (diff) | |
download | wireguard-openbsd-c409818b0213d7776f44d247a6ea9408417afb15.tar.xz wireguard-openbsd-c409818b0213d7776f44d247a6ea9408417afb15.zip |
Remove a couple of redraw flags that no longer have any effect.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 83121ecdc5c..537dfcaed52 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.734 2017/04/05 10:49:46 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.735 2017/04/17 06:40:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -816,7 +816,7 @@ struct window { int flags; #define WINDOW_BELL 0x1 #define WINDOW_ACTIVITY 0x2 -#define WINDOW_REDRAW 0x4 +/* 0x4 unused */ #define WINDOW_SILENCE 0x8 #define WINDOW_ZOOMED 0x1000 #define WINDOW_FORCEWIDTH 0x2000 @@ -1332,7 +1332,7 @@ struct client { #define CLIENT_DEAD 0x200 #define CLIENT_BORDERS 0x400 #define CLIENT_READONLY 0x800 -#define CLIENT_REDRAWWINDOW 0x1000 +/* 0x1000 unused */ #define CLIENT_CONTROL 0x2000 #define CLIENT_CONTROLCONTROL 0x4000 #define CLIENT_FOCUSED 0x8000 |