[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.12 and 1.13

version 1.12, 2012/07/10 11:53:01 version 1.13, 2012/07/11 07:10:15
Line 26 
Line 26 
  * Sources a configuration file.   * Sources a configuration file.
  */   */
   
 int     cmd_source_file_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_source_file_exec(struct cmd *, struct cmd_ctx *);
   
 const struct cmd_entry cmd_source_file_entry = {  const struct cmd_entry cmd_source_file_entry = {
         "source-file", "source",          "source-file", "source",
Line 38 
Line 38 
         cmd_source_file_exec          cmd_source_file_exec
 };  };
   
 int  enum cmd_retval
 cmd_source_file_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_source_file_exec(struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct args             *args = self->args;          struct args             *args = self->args;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13