=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-split-window.c,v retrieving revision 1.53 retrieving revision 1.54 diff -c -r1.53 -r1.54 *** src/usr.bin/tmux/cmd-split-window.c 2014/10/20 23:35:28 1.53 --- src/usr.bin/tmux/cmd-split-window.c 2014/11/12 22:57:06 1.54 *************** *** 1,4 **** ! /* $OpenBSD: cmd-split-window.c,v 1.53 2014/10/20 23:35:28 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-split-window.c,v 1.54 2014/11/12 22:57:06 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 37,44 **** const struct cmd_entry cmd_split_window_entry = { "split-window", "splitw", ! "c:dF:l:hp:Pt:v", 0, -1, ! "[-dhvP] [-c start-directory] [-F format] [-p percentage|-l size] " CMD_TARGET_PANE_USAGE " [command]", 0, cmd_split_window_exec --- 37,44 ---- const struct cmd_entry cmd_split_window_entry = { "split-window", "splitw", ! "bc:dF:l:hp:Pt:v", 0, -1, ! "[-bdhvP] [-c start-directory] [-F format] [-p percentage|-l size] " CMD_TARGET_PANE_USAGE " [command]", 0, cmd_split_window_exec *************** *** 145,151 **** if (*shell == '\0' || areshell(shell)) shell = _PATH_BSHELL; ! if ((lc = layout_split_pane(wp, type, size, 0)) == NULL) { cause = xstrdup("pane too small"); goto error; } --- 145,152 ---- if (*shell == '\0' || areshell(shell)) shell = _PATH_BSHELL; ! lc = layout_split_pane(wp, type, size, args_has(args, 'b')); ! if (lc == NULL) { cause = xstrdup("pane too small"); goto error; }