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

Diff for /src/usr.bin/tmux/Attic/cmd-list-commands.c between version 1.6 and 1.7

version 1.6, 2011/01/04 00:42:46 version 1.7, 2012/07/11 07:10:15
Line 24 
Line 24 
  * List all commands with usages.   * List all commands with usages.
  */   */
   
 int     cmd_list_commands_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_list_commands_exec(struct cmd *, struct cmd_ctx *);
   
 const struct cmd_entry cmd_list_commands_entry = {  const struct cmd_entry cmd_list_commands_entry = {
         "list-commands", "lscm",          "list-commands", "lscm",
Line 37 
Line 37 
 };  };
   
 /* ARGSUSED */  /* ARGSUSED */
 int  enum cmd_retval
 cmd_list_commands_exec(unused struct cmd *self, struct cmd_ctx *ctx)  cmd_list_commands_exec(unused struct cmd *self, struct cmd_ctx *ctx)
 {  {
         const struct cmd_entry        **entryp;          const struct cmd_entry        **entryp;
Line 45 
Line 45 
         for (entryp = cmd_table; *entryp != NULL; entryp++)          for (entryp = cmd_table; *entryp != NULL; entryp++)
                 ctx->print(ctx, "%s %s", (*entryp)->name, (*entryp)->usage);                  ctx->print(ctx, "%s %s", (*entryp)->name, (*entryp)->usage);
   
         return (0);          return (CMD_RETURN_NORMAL);
 }  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7