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

Diff for /src/usr.bin/tmux/format.c between version 1.108 and 1.109

version 1.108, 2016/10/10 21:29:23 version 1.109, 2016/10/11 13:45:47
Line 91 
Line 91 
 /* Format job tree. */  /* Format job tree. */
 static struct event format_job_event;  static struct event format_job_event;
 static int format_job_cmp(struct format_job *, struct format_job *);  static int format_job_cmp(struct format_job *, struct format_job *);
 RB_HEAD(format_job_tree, format_job) format_jobs = RB_INITIALIZER();  static RB_HEAD(format_job_tree, format_job) format_jobs = RB_INITIALIZER();
 RB_GENERATE_STATIC(format_job_tree, format_job, entry, format_job_cmp);  RB_GENERATE_STATIC(format_job_tree, format_job, entry, format_job_cmp);
   
 /* Format job tree comparison function. */  /* Format job tree comparison function. */

Legend:
Removed from v.1.108  
changed lines
  Added in v.1.109