[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.62 and 1.63

version 1.62, 2015/04/21 15:18:38 version 1.63, 2015/04/21 22:38:49
Line 577 
Line 577 
   
         ft->w = w;          ft->w = w;
   
         layout = layout_dump(w);          if (w->saved_layout_root != NULL)
                   layout = layout_dump(w->saved_layout_root);
           else
                   layout = layout_dump(w->layout_root);
   
         format_add(ft, "window_id", "@%u", w->id);          format_add(ft, "window_id", "@%u", w->id);
         format_add(ft, "window_name", "%s", w->name);          format_add(ft, "window_name", "%s", w->name);

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63