diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-11-19 10:38:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-11-19 10:38:06 +0000 |
commit | 827b311c8172f3543f9c38dc1d7740bba1d9aeaa (patch) | |
tree | dd900064b22c06b7f2d608d475288ae5000b0569 /cmd-new-session.c | |
parent | c68efec6c0f1a6ecf4950e4ddada4430fdea4156 (diff) | |
download | rtmux-827b311c8172f3543f9c38dc1d7740bba1d9aeaa.tar.gz rtmux-827b311c8172f3543f9c38dc1d7740bba1d9aeaa.tar.bz2 rtmux-827b311c8172f3543f9c38dc1d7740bba1d9aeaa.zip |
Use a utility function for common code to show errors in config file,
from Thomas Adam.
Diffstat (limited to 'cmd-new-session.c')
-rw-r--r-- | cmd-new-session.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/cmd-new-session.c b/cmd-new-session.c index cd1bc2b1..0fcea353 100644 --- a/cmd-new-session.c +++ b/cmd-new-session.c @@ -58,14 +58,13 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) struct args *args = self->args; struct session *s, *old_s, *groupwith; struct window *w; - struct window_pane *wp; struct environ env; struct termios tio, *tiop; struct passwd *pw; const char *newname, *target, *update, *cwd, *errstr; char *cmd, *cause; int detached, idx; - u_int sx, sy, i; + u_int sx, sy; newname = args_get(args, 's'); if (newname != NULL) { @@ -257,17 +256,8 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) * If there are still configuration file errors to display, put the new * session's current window into more mode and display them now. */ - if (cfg_finished && !ARRAY_EMPTY(&cfg_causes)) { - wp = s->curw->window->active; - window_pane_set_mode(wp, &window_copy_mode); - window_copy_init_for_output(wp); - for (i = 0; i < ARRAY_LENGTH(&cfg_causes); i++) { - cause = ARRAY_ITEM(&cfg_causes, i); - window_copy_add(wp, "%s", cause); - free(cause); - } - ARRAY_FREE(&cfg_causes); - } + if (cfg_finished) + show_cfg_causes(s); return (detached ? CMD_RETURN_NORMAL : CMD_RETURN_ATTACH); } |