diff options
author | 2011-04-29 07:07:31 +0000 | |
---|---|---|
committer | 2011-04-29 07:07:31 +0000 | |
commit | de533009703bf1f34ba1a43c4aada91efc6cba11 (patch) | |
tree | f4e4714000a8b53ba6c630849a193d51bc30c8d9 | |
parent | In certain failure cases, a RST would be sent out on rdomain 0, (diff) | |
download | wireguard-openbsd-de533009703bf1f34ba1a43c4aada91efc6cba11.tar.xz wireguard-openbsd-de533009703bf1f34ba1a43c4aada91efc6cba11.zip |
Only redraw the status line on command update, not the entire client
(big DOH).
-rw-r--r-- | usr.bin/tmux/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c index 81675b897d9..4046cdca43c 100644 --- a/usr.bin/tmux/status.c +++ b/usr.bin/tmux/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.74 2011/04/24 21:32:07 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.75 2011/04/29 07:07:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -642,7 +642,7 @@ status_job_callback(struct job *job) buf = xstrdup(line); so->out = buf; - server_redraw_client(c); + server_status_client(c); } /* Return winlink status line entry and adjust gc as necessary. */ |