diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-21 11:36:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-08-21 11:36:09 +0000 |
commit | 53da19e3768d5d58bf05adcab8fe0f5c55e891cd (patch) | |
tree | 07c1dd97cc2b6e503ae7cbca897bf7f0f7979f80 /usr.bin/tmux | |
parent | 1a1b8c93af8cf69ff894edb8f89133a8b4bd422c (diff) |
Move reading termios settings to before tty_open alters them, and expand the
comment.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/cmd-new-session.c | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/usr.bin/tmux/cmd-new-session.c b/usr.bin/tmux/cmd-new-session.c index d36fe0b39f2..3ea17b4161e 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.14 2009/08/19 14:32:15 nicm Exp $ */ +/* $OpenBSD: cmd-new-session.c,v 1.15 2009/08/21 11:36:08 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -149,6 +149,27 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) if (ctx->cmdclient == NULL && ctx->curclient == NULL) detached = 1; + /* + * Fill in the termios settings used for new windows in this session; + * if there is a command client, use the control characters from it. + * + * This is read again with tcgetattr() rather than using tty.tio as if + * detached, tty_open won't be called. Because of this, it must be done + * before opening the terminal as that calls tcsetattr() to prepare for + * tmux taking over. + */ + if (ctx->cmdclient != NULL && ctx->cmdclient->tty.fd != -1) { + if (tcgetattr(ctx->cmdclient->tty.fd, &tio) != 0) + fatal("tcgetattr failed"); + } else + memcpy(tio.c_cc, ttydefchars, sizeof tio.c_cc); + tio.c_iflag = TTYDEF_IFLAG; + tio.c_oflag = TTYDEF_OFLAG; + tio.c_lflag = TTYDEF_LFLAG; + tio.c_cflag = TTYDEF_CFLAG; + cfsetispeed(&tio, TTYDEF_SPEED); + cfsetospeed(&tio, TTYDEF_SPEED); + /* Open the terminal if necessary. */ if (!detached && ctx->cmdclient != NULL) { if (!(ctx->cmdclient->flags & CLIENT_TERMINAL)) { @@ -199,22 +220,6 @@ cmd_new_session_exec(struct cmd *self, struct cmd_ctx *ctx) if (ctx->cmdclient != NULL) environ_update(update, &ctx->cmdclient->environ, &env); - /* - * Fill in the termios settings used for new windows in this session; - * if there is a command client, use the control characters from it. - */ - if (ctx->cmdclient != NULL && ctx->cmdclient->tty.fd != -1) { - if (tcgetattr(ctx->cmdclient->tty.fd, &tio) != 0) - fatal("tcgetattr failed"); - } else - memcpy(tio.c_cc, ttydefchars, sizeof tio.c_cc); - tio.c_iflag = TTYDEF_IFLAG; - tio.c_oflag = TTYDEF_OFLAG; - tio.c_lflag = TTYDEF_LFLAG; - tio.c_cflag = TTYDEF_CFLAG; - cfsetispeed(&tio, TTYDEF_SPEED); - cfsetospeed(&tio, TTYDEF_SPEED); - /* Create the new session. */ idx = -1 - options_get_number(&global_s_options, "base-index"); s = session_create( |