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

Diff for /src/usr.bin/tmux/cmd-run-shell.c between version 1.33 and 1.34

version 1.33, 2015/12/13 14:32:38 version 1.34, 2015/12/13 21:53:57
Line 36 
Line 36 
 void    cmd_run_shell_print(struct job *, const char *);  void    cmd_run_shell_print(struct job *, const char *);
   
 const struct cmd_entry cmd_run_shell_entry = {  const struct cmd_entry cmd_run_shell_entry = {
         "run-shell", "run",          .name = "run-shell",
         "bt:", 1, 1,          .alias = "run",
         "[-b] " CMD_TARGET_PANE_USAGE " shell-command",  
         CMD_PANE_T|CMD_CANFAIL,          .args = { "bt:", 1, 1 },
         cmd_run_shell_exec          .usage = "[-b] " CMD_TARGET_PANE_USAGE " shell-command",
   
           .flags = CMD_PANE_T|CMD_CANFAIL,
           .exec = cmd_run_shell_exec
 };  };
   
 struct cmd_run_shell_data {  struct cmd_run_shell_data {

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34