summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2011-04-29 07:07:32 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2011-04-29 07:07:32 +0000
commitea3c7208cccf42b5a8bf5661a0f4334abbe049cc (patch)
tree8a0165c22495003acb6a0ccbfe15e87dd81efa1a
parentdf6882044c27c4c0fdcf485f4cf5e49f5389b9e0 (diff)
Only redraw the status line on command update, not the entire client
(big DOH).
-rw-r--r--usr.bin/tmux/status.c4
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. */