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

Diff for /src/usr.bin/tmux/cmd-source-file.c between version 1.25 and 1.26

version 1.25, 2016/05/12 16:05:33 version 1.26, 2016/10/10 21:51:39
Line 26 
Line 26 
  * Sources a configuration file.   * Sources a configuration file.
  */   */
   
 enum cmd_retval cmd_source_file_exec(struct cmd *, struct cmd_q *);  static enum cmd_retval  cmd_source_file_exec(struct cmd *, struct cmd_q *);
   
 void            cmd_source_file_done(struct cmd_q *);  static void             cmd_source_file_done(struct cmd_q *);
   
 const struct cmd_entry cmd_source_file_entry = {  const struct cmd_entry cmd_source_file_entry = {
         .name = "source-file",          .name = "source-file",
Line 41 
Line 41 
         .exec = cmd_source_file_exec          .exec = cmd_source_file_exec
 };  };
   
 enum cmd_retval  static enum cmd_retval
 cmd_source_file_exec(struct cmd *self, struct cmd_q *cmdq)  cmd_source_file_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
Line 76 
Line 76 
         return (CMD_RETURN_WAIT);          return (CMD_RETURN_WAIT);
 }  }
   
 void  static void
 cmd_source_file_done(struct cmd_q *cmdq1)  cmd_source_file_done(struct cmd_q *cmdq1)
 {  {
         struct cmd_q    *cmdq = cmdq1->data;          struct cmd_q    *cmdq = cmdq1->data;

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26