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

Diff for /src/usr.bin/tmux/cmd-set-option.c between version 1.90 and 1.91

version 1.90, 2015/12/13 14:32:38 version 1.91, 2015/12/13 21:53:57
Line 65 
Line 65 
             const char *);              const char *);
   
 const struct cmd_entry cmd_set_option_entry = {  const struct cmd_entry cmd_set_option_entry = {
         "set-option", "set",          .name = "set-option",
         "agoqst:uw", 1, 2,          .alias = "set",
         "[-agosquw] [-t target-window] option [value]",  
         CMD_WINDOW_T|CMD_CANFAIL,          .args = { "agoqst:uw", 1, 2 },
         cmd_set_option_exec          .usage = "[-agosquw] [-t target-window] option [value]",
   
           .flags = CMD_WINDOW_T|CMD_CANFAIL,
           .exec = cmd_set_option_exec
 };  };
   
 const struct cmd_entry cmd_set_window_option_entry = {  const struct cmd_entry cmd_set_window_option_entry = {
         "set-window-option", "setw",          .name = "set-window-option",
         "agoqt:u", 1, 2,          .alias = "setw",
         "[-agoqu] " CMD_TARGET_WINDOW_USAGE " option [value]",  
         CMD_WINDOW_T|CMD_CANFAIL,          .args = { "agoqt:u", 1, 2 },
         cmd_set_option_exec          .usage = "[-agoqu] " CMD_TARGET_WINDOW_USAGE " option [value]",
   
           .flags = CMD_WINDOW_T|CMD_CANFAIL,
           .exec = cmd_set_option_exec
 };  };
   
 enum cmd_retval  enum cmd_retval

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91