=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-refresh-client.c,v retrieving revision 1.25 retrieving revision 1.26 diff -c -r1.25 -r1.26 *** src/usr.bin/tmux/cmd-refresh-client.c 2017/05/10 16:48:36 1.25 --- src/usr.bin/tmux/cmd-refresh-client.c 2017/05/28 19:00:52 1.26 *************** *** 1,4 **** ! /* $OpenBSD: cmd-refresh-client.c,v 1.25 2017/05/10 16:48:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-refresh-client.c,v 1.26 2017/05/28 19:00:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 67,76 **** cmdq_error(item, "not a control client"); return (CMD_RETURN_ERROR); } ! if (tty_set_size(&c->tty, w, h)) { ! c->flags |= CLIENT_SIZECHANGED; ! recalculate_sizes(); ! } } else if (args_has(args, 'S')) { c->flags |= CLIENT_STATUSFORCE; server_status_client(c); --- 67,75 ---- cmdq_error(item, "not a control client"); return (CMD_RETURN_ERROR); } ! tty_set_size(&c->tty, w, h); ! c->flags |= CLIENT_SIZECHANGED; ! recalculate_sizes(); } else if (args_has(args, 'S')) { c->flags |= CLIENT_STATUSFORCE; server_status_client(c);