[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.205 and 1.206

version 1.205, 2010/02/06 22:55:31 version 1.206, 2010/02/06 23:22:27
Line 1244 
Line 1244 
         const char     **choices;          const char     **choices;
 };  };
   
   /* List of configuration causes. */
   ARRAY_DECL(causelist, char *);
   
 /* tmux.c */  /* tmux.c */
 extern struct options global_options;  extern struct options global_options;
 extern struct options global_s_options;  extern struct options global_s_options;
Line 1262 
Line 1265 
   
 /* cfg.c */  /* cfg.c */
 extern int       cfg_finished;  extern int       cfg_finished;
 extern char    **cfg_causes;  struct causelist cfg_causes;
 extern u_int     cfg_ncauses;  void printflike2 cfg_add_cause(struct causelist *, const char *, ...);
 void printflike3 cfg_add_cause(u_int *, char ***, const char *, ...);  int              load_cfg(const char *, struct cmd_ctx *, struct causelist *);
 int              load_cfg(const char *, struct cmd_ctx *, u_int *, char ***);  
   
 /* mode-key.c */  /* mode-key.c */
 extern const struct mode_key_table mode_key_tables[];  extern const struct mode_key_table mode_key_tables[];

Legend:
Removed from v.1.205  
changed lines
  Added in v.1.206