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

Diff for /src/usr.bin/tmux/cmd-new-session.c between version 1.82 and 1.83

version 1.82, 2015/12/13 21:53:57 version 1.83, 2015/12/14 00:31:54
Line 44 
Line 44 
                  "[-s session-name] " CMD_TARGET_SESSION_USAGE " [-x width] "                   "[-s session-name] " CMD_TARGET_SESSION_USAGE " [-x width] "
                  "[-y height] [command]",                   "[-y height] [command]",
   
         .flags = CMD_STARTSERVER|CMD_CANFAIL|CMD_SESSION_T,          .tflag = CMD_SESSION_CANFAIL,
   
           .flags = CMD_STARTSERVER,
         .exec = cmd_new_session_exec          .exec = cmd_new_session_exec
 };  };
   
Line 55 
Line 57 
         .args = { "t:", 0, 0 },          .args = { "t:", 0, 0 },
         .usage = CMD_TARGET_SESSION_USAGE,          .usage = CMD_TARGET_SESSION_USAGE,
   
         .flags = CMD_SESSION_T,          .tflag = CMD_SESSION,
   
           .flags = 0,
         .exec = cmd_new_session_exec          .exec = cmd_new_session_exec
 };  };
   

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83