aboutsummaryrefslogtreecommitdiff
path: root/cmd-split-window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-09-16 12:36:28 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-09-16 12:36:28 +0000
commit15b643fc119221658ca3e9c6718eeb88ffcbe47a (patch)
tree21c2d4ebd4565117a9a4d9ed7c98f84326849f07 /cmd-split-window.c
parent150fba5ecdb3fedd8aed71ee65fb8cc6b0354070 (diff)
downloadrtmux-15b643fc119221658ca3e9c6718eeb88ffcbe47a.tar.gz
rtmux-15b643fc119221658ca3e9c6718eeb88ffcbe47a.tar.bz2
rtmux-15b643fc119221658ca3e9c6718eeb88ffcbe47a.zip
Sync from OpenBSD:
== Rather than constructing an entire termios struct from ttydefaults.h, just let forkpty do it and then alter the bits that should be changed after fork. A little neater and more portable. == This should fix problems caused by glibc's broken ttydefaults.h file.
Diffstat (limited to 'cmd-split-window.c')
-rw-r--r--cmd-split-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-split-window.c b/cmd-split-window.c
index b5a8e9ae..79594631 100644
--- a/cmd-split-window.c
+++ b/cmd-split-window.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-split-window.c,v 1.26 2009-09-02 01:05:55 tcunha Exp $ */
+/* $Id: cmd-split-window.c,v 1.27 2009-09-16 12:36:27 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -189,7 +189,7 @@ cmd_split_window_exec(struct cmd *self, struct cmd_ctx *ctx)
shell = _PATH_BSHELL;
wp = window_add_pane(w, hlimit);
- if (window_pane_spawn(wp, cmd, shell, cwd, &env, &s->tio, &cause) != 0)
+ if (window_pane_spawn(wp, cmd, shell, cwd, &env, s->tio, &cause) != 0)
goto error;
if (layout_split_pane(w->active, type, size, wp) != 0) {
cause = xstrdup("pane too small");