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

Diff for /src/usr.bin/tmux/cmd-pipe-pane.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 38 
Line 38 
 void    cmd_pipe_pane_error_callback(struct bufferevent *, short, void *);  void    cmd_pipe_pane_error_callback(struct bufferevent *, short, void *);
   
 const struct cmd_entry cmd_pipe_pane_entry = {  const struct cmd_entry cmd_pipe_pane_entry = {
         "pipe-pane", "pipep",          .name = "pipe-pane",
         "ot:", 0, 1,          .alias = "pipep",
         "[-o] " CMD_TARGET_PANE_USAGE " [command]",  
         CMD_PANE_T,          .args = { "ot:", 0, 1 },
         cmd_pipe_pane_exec          .usage = "[-o] " CMD_TARGET_PANE_USAGE " [command]",
   
           .flags = CMD_PANE_T,
           .exec = cmd_pipe_pane_exec
 };  };
   
 enum cmd_retval  enum cmd_retval

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