=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/server-fn.c,v retrieving revision 1.115 retrieving revision 1.116 diff -c -r1.115 -r1.116 *** src/usr.bin/tmux/server-fn.c 2018/08/18 20:08:52 1.115 --- src/usr.bin/tmux/server-fn.c 2018/08/19 16:45:03 1.116 *************** *** 1,4 **** ! /* $OpenBSD: server-fn.c,v 1.115 2018/08/18 20:08:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: server-fn.c,v 1.116 2018/08/19 16:45:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 35,47 **** void server_redraw_client(struct client *c) { ! c->flags |= CLIENT_REDRAW; } void server_status_client(struct client *c) { ! c->flags |= CLIENT_STATUS; } void --- 35,47 ---- void server_redraw_client(struct client *c) { ! c->flags |= CLIENT_ALLREDRAWFLAGS; } void server_status_client(struct client *c) { ! c->flags |= CLIENT_REDRAWSTATUS; } void *************** *** 110,116 **** TAILQ_FOREACH(c, &clients, entry) { if (c->session != NULL && c->session->curw->window == w) ! c->flags |= CLIENT_BORDERS; } } --- 110,116 ---- TAILQ_FOREACH(c, &clients, entry) { if (c->session != NULL && c->session->curw->window == w) ! c->flags |= CLIENT_REDRAWBORDERS; } }