diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-23 12:33:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-23 12:33:49 +0000 |
commit | 751fa9dd817e251707810d90288e186ca23e6949 (patch) | |
tree | 27d840c9bf0456519a7bbbcdfcca5a1e1dda64df /usr.bin/tmux/cmd-new-session.c | |
parent | 092997f9520ca914f82db00753afbf4ced0a4cc9 (diff) |
Both of cmdclient and curclient CAN be NULL - if the command is executed from
the configuration file. In this case, attach-session can't do much, and
new-session should just assume -d.
Diffstat (limited to 'usr.bin/tmux/cmd-new-session.c')
-rw-r--r-- | usr.bin/tmux/cmd-new-session.c | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/usr.bin/tmux/cmd-new-session.c b/usr.bin/tmux/cmd-new-session.c index 4fb33908f11..3a27b855a58 100644 --- a/usr.bin/tmux/cmd-new-session.c +++ b/usr.bin/tmux/cmd-new-session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-new-session.c,v 1.5 2009/07/22 22:47:43 nicm Exp $ */ +/* $OpenBSD: cmd-new-session.c,v 1.6 2009/07/23 12:33:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -114,6 +114,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) struct session *s; struct options *oo; char *cmd, *cwd, *cause; + int detached; u_int sx, sy; if (data->newname != NULL && session_find(data->newname) != NULL) { @@ -122,7 +123,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) } /* - * There are two cases: + * There are three cases: * * 1. If cmdclient is non-NULL, new-session has been called from the * command-line - cmdclient is to become a new attached, interactive @@ -132,12 +133,20 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) * 2. If cmdclient is NULL, new-session has been called from an * existing client (such as a key binding). * - * In both cases, a new additional session needs to be created and + * 3. Both are NULL, the command was in the configuration file. Treat + * this as if -d was given even if it was not. + * + * In all cases, a new additional session needs to be created and * (unless -d) set as the current session for the client. */ + /* Set -d if no client. */ + detached = data->flag_detached; + if (ctx->cmdclient == NULL && ctx->curclient == NULL) + detached = 1; + /* Open the terminal if necessary. */ - if (!data->flag_detached && ctx->cmdclient != NULL) { + if (!detached && ctx->cmdclient != NULL) { if (!(ctx->cmdclient->flags & CLIENT_TERMINAL)) { ctx->error(ctx, "not a terminal"); return (-1); @@ -155,11 +164,11 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) * path and command. */ oo = &global_s_options; - if (ctx->cmdclient == NULL) + if (ctx->cmdclient == NULL && ctx->curclient != NULL) oo = &ctx->curclient->session->options; /* Find new session size and options. */ - if (data->flag_detached) { + if (detached) { sx = 80; sy = 25; } else { @@ -207,14 +216,14 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) * to exit. */ if (ctx->cmdclient != NULL) { - if (!data->flag_detached) + if (!detached) server_write_client(ctx->cmdclient, MSG_READY, NULL, 0); else server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0); } /* Set the client to the new session. */ - if (!data->flag_detached) { + if (!detached) { if (ctx->cmdclient != NULL) { ctx->cmdclient->session = s; server_redraw_client(ctx->cmdclient); |