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

Diff for /src/usr.bin/tmux/cmd-command-prompt.c between version 1.30 and 1.31

version 1.30, 2015/12/13 14:32:38 version 1.31, 2015/12/13 21:53:57
Line 35 
Line 35 
 void    cmd_command_prompt_free(void *);  void    cmd_command_prompt_free(void *);
   
 const struct cmd_entry cmd_command_prompt_entry = {  const struct cmd_entry cmd_command_prompt_entry = {
         "command-prompt", NULL,          .name = "command-prompt",
         "I:p:t:", 0, 1,          .alias = NULL,
         "[-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE " [template]",  
         CMD_CLIENT_T,          .args = { "I:p:t:", 0, 1 },
         cmd_command_prompt_exec          .usage = "[-I inputs] [-p prompts] " CMD_TARGET_CLIENT_USAGE " "
                    "[template]",
   
           .flags = CMD_CLIENT_T,
           .exec = cmd_command_prompt_exec
 };  };
   
 struct cmd_command_prompt_cdata {  struct cmd_command_prompt_cdata {

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31