[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.56 and 1.57

version 1.56, 2009/12/14 10:47:11 version 1.57, 2010/01/26 21:36:53
Line 550 
Line 550 
                 xfree(job->data);                  xfree(job->data);
         else          else
                 server_redraw_client(job->client);                  server_redraw_client(job->client);
         job->data = xstrdup(line);  
   
         if (buf != NULL)          if (line == NULL)
                 xfree(buf);                  job->data = buf;
           else
                   job->data = xstrdup(line);
 }  }
   
 /* Calculate winlink status line entry width. */  /* Calculate winlink status line entry width. */

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57