=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-display-menu.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/tmux/cmd-display-menu.c 2020/04/08 10:58:09 1.12 --- src/usr.bin/tmux/cmd-display-menu.c 2020/04/13 08:26:27 1.13 *************** *** 1,4 **** ! /* $OpenBSD: cmd-display-menu.c,v 1.12 2020/04/08 10:58:09 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-display-menu.c,v 1.13 2020/04/13 08:26:27 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott *************** *** 171,177 **** static enum cmd_retval cmd_display_menu_exec(struct cmd *self, struct cmdq_item *item) { ! struct args *args = self->args; struct client *c; struct session *s = item->target.s; struct winlink *wl = item->target.wl; --- 171,177 ---- static enum cmd_retval cmd_display_menu_exec(struct cmd *self, struct cmdq_item *item) { ! struct args *args = cmd_get_args(self); struct client *c; struct session *s = item->target.s; struct winlink *wl = item->target.wl; *************** *** 239,245 **** static enum cmd_retval cmd_display_popup_exec(struct cmd *self, struct cmdq_item *item) { ! struct args *args = self->args; struct client *c; struct cmd_find_state *fs = &item->target; const char *value, *cmd = NULL, **lines = NULL; --- 239,245 ---- static enum cmd_retval cmd_display_popup_exec(struct cmd *self, struct cmdq_item *item) { ! struct args *args = cmd_get_args(self); struct client *c; struct cmd_find_state *fs = &item->target; const char *value, *cmd = NULL, **lines = NULL;