=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-select-pane.c,v retrieving revision 1.56 retrieving revision 1.57 diff -c -r1.56 -r1.57 *** src/usr.bin/tmux/cmd-select-pane.c 2020/04/13 10:59:58 1.56 --- src/usr.bin/tmux/cmd-select-pane.c 2020/04/13 14:04:25 1.57 *************** *** 1,4 **** ! /* $OpenBSD: cmd-select-pane.c,v 1.56 2020/04/13 10:59:58 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-select-pane.c,v 1.57 2020/04/13 14:04:25 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 85,92 **** { struct args *args = cmd_get_args(self); const struct cmd_entry *entry = cmd_get_entry(self); ! struct cmdq_shared *shared = cmdq_get_shared(item); ! struct cmd_find_state *current = &shared->current; struct cmd_find_state *target = cmdq_get_target(item); struct client *c = cmd_find_client(item, NULL, 1); struct winlink *wl = target->wl; --- 85,92 ---- { struct args *args = cmd_get_args(self); const struct cmd_entry *entry = cmd_get_entry(self); ! struct cmdq_state *state = cmdq_get_state(item); ! struct cmd_find_state *current = &state->current; struct cmd_find_state *target = cmdq_get_target(item); struct client *c = cmd_find_client(item, NULL, 1); struct winlink *wl = target->wl;