=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd.c,v retrieving revision 1.145 retrieving revision 1.146 diff -c -r1.145 -r1.146 *** src/usr.bin/tmux/cmd.c 2019/05/03 16:51:29 1.145 --- src/usr.bin/tmux/cmd.c 2019/05/03 18:42:40 1.146 *************** *** 1,4 **** ! /* $OpenBSD: cmd.c,v 1.145 2019/05/03 16:51:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd.c,v 1.146 2019/05/03 18:42:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 484,491 **** x = m->lx + m->ox; y = m->ly + m->oy; } else { ! x = m->x; ! y = m->y; } log_debug("%s: x=%u, y=%u%s", __func__, x, y, last ? " (last)" : ""); --- 484,491 ---- x = m->lx + m->ox; y = m->ly + m->oy; } else { ! x = m->x + m->ox; ! y = m->y + m->oy; } log_debug("%s: x=%u, y=%u%s", __func__, x, y, last ? " (last)" : "");