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

Diff for /src/usr.bin/tmux/cmd-show-options.c between version 1.31 and 1.32

version 1.31, 2016/03/03 14:15:22 version 1.32, 2016/10/10 21:51:39
Line 27 
Line 27 
  * Show options.   * Show options.
  */   */
   
 enum cmd_retval  cmd_show_options_exec(struct cmd *, struct cmd_q *);  static enum cmd_retval  cmd_show_options_exec(struct cmd *, struct cmd_q *);
   
 enum cmd_retval cmd_show_options_one(struct cmd *, struct cmd_q *,  static enum cmd_retval  cmd_show_options_one(struct cmd *, struct cmd_q *,
                     struct options *, int);                              struct options *, int);
 enum cmd_retval cmd_show_options_all(struct cmd *, struct cmd_q *,  static enum cmd_retval  cmd_show_options_all(struct cmd *, struct cmd_q *,
                     struct options *, enum options_table_scope);                              struct options *, enum options_table_scope);
   
 const struct cmd_entry cmd_show_options_entry = {  const struct cmd_entry cmd_show_options_entry = {
         .name = "show-options",          .name = "show-options",
Line 60 
Line 60 
         .exec = cmd_show_options_exec          .exec = cmd_show_options_exec
 };  };
   
 enum cmd_retval  static enum cmd_retval
 cmd_show_options_exec(struct cmd *self, struct cmd_q *cmdq)  cmd_show_options_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args                     *args = self->args;          struct args                     *args = self->args;
Line 110 
Line 110 
                 return (cmd_show_options_one(self, cmdq, oo, quiet));                  return (cmd_show_options_one(self, cmdq, oo, quiet));
 }  }
   
 enum cmd_retval  static enum cmd_retval
 cmd_show_options_one(struct cmd *self, struct cmd_q *cmdq,  cmd_show_options_one(struct cmd *self, struct cmd_q *cmdq,
     struct options *oo, int quiet)      struct options *oo, int quiet)
 {  {
Line 160 
Line 160 
         return (CMD_RETURN_NORMAL);          return (CMD_RETURN_NORMAL);
 }  }
   
 enum cmd_retval  static enum cmd_retval
 cmd_show_options_all(struct cmd *self, struct cmd_q *cmdq, struct options *oo,  cmd_show_options_all(struct cmd *self, struct cmd_q *cmdq, struct options *oo,
     enum options_table_scope scope)      enum options_table_scope scope)
 {  {

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