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

Diff for /src/usr.bin/tmux/cmd-detach-client.c between version 1.25 and 1.26

version 1.25, 2015/12/13 21:53:57 version 1.26, 2015/12/14 00:31:54
Line 35 
Line 35 
         .args = { "as:t:P", 0, 0 },          .args = { "as:t:P", 0, 0 },
         .usage = "[-P] [-a] [-s target-session] " CMD_TARGET_CLIENT_USAGE,          .usage = "[-P] [-a] [-s target-session] " CMD_TARGET_CLIENT_USAGE,
   
         .flags = CMD_READONLY|CMD_CLIENT_T|CMD_SESSION_S,          .sflag = CMD_SESSION,
           .tflag = CMD_CLIENT,
   
           .flags = CMD_READONLY,
         .exec = cmd_detach_client_exec          .exec = cmd_detach_client_exec
 };  };
   
Line 46 
Line 49 
         .args = { "t:", 0, 0 },          .args = { "t:", 0, 0 },
         .usage = CMD_TARGET_CLIENT_USAGE,          .usage = CMD_TARGET_CLIENT_USAGE,
   
         .flags = CMD_CLIENT_T,          .tflag = CMD_CLIENT,
   
           .flags = 0,
         .exec = cmd_detach_client_exec          .exec = cmd_detach_client_exec
 };  };
   

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26