Reset output functions too when changing client after attaching, to

avoid crash if a command in a sequence after new/attach causes output.
pull/1/head
Nicholas Marriott 2010-03-22 19:14:55 +00:00
parent 9abbe349af
commit e16b7b8399
1 changed files with 4 additions and 0 deletions

View File

@ -99,6 +99,10 @@ cmd_list_exec(struct cmd_list *cmdlist, struct cmd_ctx *ctx)
if (ctx->curclient == NULL) {
ctx->curclient = ctx->cmdclient;
ctx->cmdclient = NULL;
ctx->error = key_bindings_error;
ctx->print = key_bindings_print;
ctx->info = key_bindings_info;
}
}
}