diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-24 16:24:18 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-24 16:24:18 +0000 |
commit | 2e2e762743417ae7a0c32a4b40909ecdf3bb3560 (patch) | |
tree | 5bb1acfe9bc3008ee8197c6daa12e8e2ce88658e /cmd-command-prompt.c | |
parent | 266c13df18bb576bbda4a417c429a66a8929c6af (diff) | |
download | rtmux-2e2e762743417ae7a0c32a4b40909ecdf3bb3560.tar.gz rtmux-2e2e762743417ae7a0c32a4b40909ecdf3bb3560.tar.bz2 rtmux-2e2e762743417ae7a0c32a4b40909ecdf3bb3560.zip |
Sync OpenBSD patchset 289:
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 'cmd-command-prompt.c')
-rw-r--r-- | cmd-command-prompt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd-command-prompt.c b/cmd-command-prompt.c index d8bfff66..9a8a1fb6 100644 --- a/cmd-command-prompt.c +++ b/cmd-command-prompt.c @@ -1,4 +1,4 @@ -/* $Id: cmd-command-prompt.c,v 1.23 2009-08-20 11:51:20 tcunha Exp $ */ +/* $Id: cmd-command-prompt.c,v 1.24 2009-08-24 16:24:18 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -238,7 +238,6 @@ cmd_command_prompt_callback(void *data, const char *s) } ctx.msgdata = NULL; - ctx.cursession = c->session; ctx.curclient = c; ctx.error = key_bindings_error; |