From 57df44291634e1083fccf29ecccc8b1793647e50 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 15 Nov 2011 23:19:51 +0000 Subject: Make window_pane_index work the same as window_index, from Ben Boeckel. --- status.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'status.c') diff --git a/status.c b/status.c index 86f7e8c9..487d3f56 100644 --- a/status.c +++ b/status.c @@ -372,6 +372,7 @@ status_replace1(struct client *c, struct session *s, struct winlink *wl, char ch, tmp[256], *ptr, *endptr, *freeptr; size_t ptrlen; long limit; + u_int idx; if (s == NULL) s = c->session; @@ -422,8 +423,10 @@ status_replace1(struct client *c, struct session *s, struct winlink *wl, ptr = tmp; goto do_replace; case 'P': + if (window_pane_index(wp, &idx) != 0) + fatalx("index not found"); xsnprintf( - tmp, sizeof tmp, "%u", window_pane_index(wl->window, wp)); + tmp, sizeof tmp, "%u", idx); ptr = tmp; goto do_replace; case 'S': -- cgit