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

Diff for /src/usr.bin/tmux/status.c between version 1.97 and 1.98

version 1.97, 2013/03/21 16:14:09 version 1.98, 2013/03/21 16:24:03
Line 503 
Line 503 
     struct window_pane *wp, const char *fmt, time_t t, int jobsflag)      struct window_pane *wp, const char *fmt, time_t t, int jobsflag)
 {  {
         static char              out[BUFSIZ];          static char              out[BUFSIZ];
         char                     in[BUFSIZ], ch, *iptr, *optr;          char                     in[BUFSIZ], ch, *iptr, *optr, *expanded;
         size_t                   len;          size_t                   len;
         struct format_tree      *ft;          struct format_tree      *ft;
   
Line 542 
Line 542 
         format_session(ft, s);          format_session(ft, s);
         format_winlink(ft, s, wl);          format_winlink(ft, s, wl);
         format_window_pane(ft, wp);          format_window_pane(ft, wp);
         return (format_expand(ft, out));      expanded = format_expand(ft, out);
       format_free(ft);
       return (expanded);
 }  }
   
 /* Figure out job name and get its result, starting it off if necessary. */  /* Figure out job name and get its result, starting it off if necessary. */

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98