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

Diff for /src/usr.bin/tmux/cmd-respawn-window.c between version 1.26 and 1.27

version 1.26, 2015/12/13 14:32:38 version 1.27, 2015/12/13 21:53:57
Line 30 
Line 30 
 enum cmd_retval  cmd_respawn_window_exec(struct cmd *, struct cmd_q *);  enum cmd_retval  cmd_respawn_window_exec(struct cmd *, struct cmd_q *);
   
 const struct cmd_entry cmd_respawn_window_entry = {  const struct cmd_entry cmd_respawn_window_entry = {
         "respawn-window", "respawnw",          .name = "respawn-window",
         "kt:", 0, -1,          .alias = "respawnw",
         "[-k] " CMD_TARGET_WINDOW_USAGE " [command]",  
         CMD_WINDOW_T,          .args = { "kt:", 0, -1 },
         cmd_respawn_window_exec          .usage = "[-k] " CMD_TARGET_WINDOW_USAGE " [command]",
   
           .flags = CMD_WINDOW_T,
           .exec = cmd_respawn_window_exec
 };  };
   
 enum cmd_retval  enum cmd_retval

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