[BACK]Return to cmd-split-window.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-split-window.c between version 1.53 and 1.54

version 1.53, 2014/10/20 23:35:28 version 1.54, 2014/11/12 22:57:06
Line 37 
Line 37 
   
 const struct cmd_entry cmd_split_window_entry = {  const struct cmd_entry cmd_split_window_entry = {
         "split-window", "splitw",          "split-window", "splitw",
         "c:dF:l:hp:Pt:v", 0, -1,          "bc:dF:l:hp:Pt:v", 0, -1,
         "[-dhvP] [-c start-directory] [-F format] [-p percentage|-l size] "          "[-bdhvP] [-c start-directory] [-F format] [-p percentage|-l size] "
         CMD_TARGET_PANE_USAGE " [command]",          CMD_TARGET_PANE_USAGE " [command]",
         0,          0,
         cmd_split_window_exec          cmd_split_window_exec
Line 145 
Line 145 
         if (*shell == '\0' || areshell(shell))          if (*shell == '\0' || areshell(shell))
                 shell = _PATH_BSHELL;                  shell = _PATH_BSHELL;
   
         if ((lc = layout_split_pane(wp, type, size, 0)) == NULL) {          lc = layout_split_pane(wp, type, size, args_has(args, 'b'));
           if (lc == NULL) {
                 cause = xstrdup("pane too small");                  cause = xstrdup("pane too small");
                 goto error;                  goto error;
         }          }

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54