=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/window-choose.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- src/usr.bin/tmux/Attic/window-choose.c 2013/03/21 16:09:17 1.34 +++ src/usr.bin/tmux/Attic/window-choose.c 2013/03/21 16:09:59 1.35 @@ -1,4 +1,4 @@ -/* $OpenBSD: window-choose.c,v 1.34 2013/03/21 16:09:17 nicm Exp $ */ +/* $OpenBSD: window-choose.c,v 1.35 2013/03/21 16:09:59 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -863,11 +863,10 @@ } struct window_choose_data * -window_choose_add_session(struct window_pane *wp, struct cmd_ctx *ctx, +window_choose_add_session(struct window_pane *wp, struct client *c, struct session *s, const char *template, char *action, u_int idx) { struct window_choose_data *wcd; - struct client *c = ctx->curclient; wcd = window_choose_data_create(TREE_SESSION, c, c->session); wcd->idx = s->idx; @@ -887,11 +886,10 @@ } struct window_choose_data * -window_choose_add_item(struct window_pane *wp, struct cmd_ctx *ctx, +window_choose_add_item(struct window_pane *wp, struct client *c, struct winlink *wl, const char *template, char *action, u_int idx) { struct window_choose_data *wcd; - struct client *c = ctx->curclient; char *expanded; wcd = window_choose_data_create(TREE_OTHER, c, c->session); @@ -918,12 +916,11 @@ } struct window_choose_data * -window_choose_add_window(struct window_pane *wp, struct cmd_ctx *ctx, +window_choose_add_window(struct window_pane *wp, struct client *c, struct session *s, struct winlink *wl, const char *template, char *action, u_int idx) { struct window_choose_data *wcd; - struct client *c = ctx->curclient; char *expanded; wcd = window_choose_data_create(TREE_WINDOW, c, c->session);