window_pane_move is not used.

This commit is contained in:
Nicholas Marriott
2026-05-19 10:54:35 +01:00
parent 7c23da598d
commit 57b17bbb70
3 changed files with 0 additions and 12 deletions

View File

@@ -1219,15 +1219,6 @@ window_pane_resize(struct window_pane *wp, u_int sx, u_int sy)
wme->mode->resize(wme, sx, sy);
}
void
window_pane_move(struct window_pane *wp, int xoff, int yoff)
{
wp->xoff = xoff;
wp->yoff = yoff;
log_debug("%s: %%%u resize %ux%u", __func__, wp->id, xoff, yoff);
}
int
window_pane_set_mode(struct window_pane *wp, struct window_pane *swp,
const struct window_mode *mode, struct cmd_find_state *fs,