[BACK]Return to cmd-list-windows.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-list-windows.c between version 1.9 and 1.10

version 1.9, 2010/06/29 03:30:13 version 1.10, 2010/11/15 06:52:11
Line 51 
Line 51 
                 return (-1);                  return (-1);
   
         RB_FOREACH(wl, winlinks, &s->windows) {          RB_FOREACH(wl, winlinks, &s->windows) {
                 ctx->print(ctx, "%d: %s [%ux%u]",  
                     wl->idx, wl->window->name, wl->window->sx, wl->window->sy);  
                 layout = layout_dump(wl->window);                  layout = layout_dump(wl->window);
                 ctx->print(ctx, "    layout: %s", layout);                  ctx->print(ctx, "%d: %s [%ux%u] [layout %s]%s",
                       wl->idx, wl->window->name, wl->window->sx, wl->window->sy,
                       layout, wl == s->curw ? " (active)" : "");
                 xfree(layout);                  xfree(layout);
         }          }
   

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10