=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window-client.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/tmux/window-client.c 2017/10/25 11:26:11 1.9 --- src/usr.bin/tmux/window-client.c 2017/11/02 21:29:17 1.10 *************** *** 1,4 **** ! /* $OpenBSD: window-client.c,v 1.9 2017/10/25 11:26:11 nicm Exp $ */ /* * Copyright (c) 2017 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: window-client.c,v 1.10 2017/11/02 21:29:17 nicm Exp $ */ /* * Copyright (c) 2017 Nicholas Marriott *************** *** 235,243 **** screen_write_cursormove(&ctx, 0, sy - 1); if (c->old_status != NULL) ! screen_write_copy(&ctx, c->old_status, 0, 0, sx, 1, NULL, NULL); else ! screen_write_copy(&ctx, &c->status, 0, 0, sx, 1, NULL, NULL); screen_write_stop(&ctx); return (&s); --- 235,243 ---- screen_write_cursormove(&ctx, 0, sy - 1); if (c->old_status != NULL) ! screen_write_fast_copy(&ctx, c->old_status, 0, 0, sx, 1); else ! screen_write_fast_copy(&ctx, &c->status, 0, 0, sx, 1); screen_write_stop(&ctx); return (&s);