diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-04-17 06:40:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-04-17 06:40:33 +0000 |
commit | 0c382b68e2a67a5bd51bd764aa85a2222221b045 (patch) | |
tree | f587266304938af8705cf895bba53b99793a50f3 /usr.bin/tmux/server-fn.c | |
parent | 488e4899c0a4ee73e494e45738c316f27434aedb (diff) |
Remove a couple of redraw flags that no longer have any effect.
Diffstat (limited to 'usr.bin/tmux/server-fn.c')
-rw-r--r-- | usr.bin/tmux/server-fn.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-fn.c b/usr.bin/tmux/server-fn.c index 9808851a082..9397ef848f2 100644 --- a/usr.bin/tmux/server-fn.c +++ b/usr.bin/tmux/server-fn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-fn.c,v 1.106 2017/03/09 17:06:35 nicm Exp $ */ +/* $OpenBSD: server-fn.c,v 1.107 2017/04/17 06:40:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -100,7 +100,6 @@ server_redraw_window(struct window *w) if (c->session != NULL && c->session->curw->window == w) server_redraw_client(c); } - w->flags |= WINDOW_REDRAW; } void |