diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 18:59:12 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 18:59:12 +0000 |
commit | f415d43c3b5cb6f519b171949a6a3eeaacbf6540 (patch) | |
tree | f591d6ce7494850f85da15e78c4d0b03525465cb /cmd-split-window.c | |
parent | 8f9858ba2f2fa410b8e0c20a7763517b6610fcb0 (diff) | |
download | rtmux-f415d43c3b5cb6f519b171949a6a3eeaacbf6540.tar.gz rtmux-f415d43c3b5cb6f519b171949a6a3eeaacbf6540.tar.bz2 rtmux-f415d43c3b5cb6f519b171949a6a3eeaacbf6540.zip |
Sync OpenBSD patchset 254:
When creating a new session from the command-line where there is an external
terminal, copy the termios(4) special characters and use them for new windows
created in the new session. Suggested by Theo.
Diffstat (limited to 'cmd-split-window.c')
-rw-r--r-- | cmd-split-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-split-window.c b/cmd-split-window.c index 07b1f56d..e1697796 100644 --- a/cmd-split-window.c +++ b/cmd-split-window.c @@ -1,4 +1,4 @@ -/* $Id: cmd-split-window.c,v 1.22 2009-08-09 17:48:55 tcunha Exp $ */ +/* $Id: cmd-split-window.c,v 1.23 2009-08-16 18:59:12 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -184,7 +184,7 @@ cmd_split_window_exec(struct cmd *self, struct cmd_ctx *ctx) type = LAYOUT_LEFTRIGHT; wp = window_add_pane(w, hlimit); - if (window_pane_spawn(wp, cmd, cwd, &env, &cause) != 0) + if (window_pane_spawn(wp, cmd, cwd, &env, &s->tio, &cause) != 0) goto error; if (layout_split_pane(w->active, type, size, wp) != 0) { cause = xstrdup("pane too small"); |