summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-23 16:45:00 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-23 16:45:00 +0000
commit43cd40e87a41d9504dcac99419c96e3cdbb81029 (patch)
treef6ec67c9e1fd7cd800ce8ef67b96633afd7cacff /key-bindings.c
parent1eb303e6d401c1ef2992933532eb2d7eab36cecf (diff)
The cursession member in struct cmd_ctx is always either curclient->session or
NULL when curclient is also NULL, so just eliminate it.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c
index 186c1a9b..b2ccc4aa 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -218,7 +218,7 @@ key_bindings_error(struct cmd_ctx *ctx, const char *fmt, ...)
void printflike2
key_bindings_print(struct cmd_ctx *ctx, const char *fmt, ...)
{
- struct winlink *wl = ctx->cursession->curw;
+ struct winlink *wl = ctx->curclient->session->curw;
va_list ap;
if (wl->window->active->mode != &window_more_mode)
@@ -254,7 +254,6 @@ key_bindings_dispatch(struct key_binding *bd, struct client *c)
struct cmd_ctx ctx;
ctx.msgdata = NULL;
- ctx.cursession = c->session;
ctx.curclient = c;
ctx.error = key_bindings_error;