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

Diff for /src/usr.bin/tmux/cmd-list-panes.c between version 1.5 and 1.6

version 1.5, 2010/08/11 07:27:50 version 1.6, 2010/11/15 06:52:11
Line 65 
Line 65 
                 }                  }
                 size += gd->hsize * sizeof *gd->linedata;                  size += gd->hsize * sizeof *gd->linedata;
   
                 ctx->print(ctx, "%u: [%ux%u] [history %u/%u, %llu bytes]%s",                  ctx->print(ctx, "%u: [%ux%u] [history %u/%u, %llu bytes]%s%s",
                     n, wp->sx, wp->sy, gd->hsize, gd->hlimit, size,                      n, wp->sx, wp->sy, gd->hsize, gd->hlimit, size,
                     wp == wp->window->active ? " (active)" : "");                      wp == wp->window->active ? " (active)" : "",
                       wp->fd == -1 ? " (dead)" : "");
                 n++;                  n++;
         }          }
   

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6