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

Diff for /src/usr.bin/tmux/window-copy.c between version 1.260 and 1.261

version 1.260, 2020/04/01 07:35:10 version 1.261, 2020/04/01 07:52:07
Line 2523 
Line 2523 
                 cells[cell].d = window_copy_cellstring(gl, px,                  cells[cell].d = window_copy_cellstring(gl, px,
                     &cells[cell].dlen);                      &cells[cell].dlen);
                 cell++;                  cell++;
                 px = (px + 1) % gd->sx;                  px++;
                 if (px == 0) {                  if (px == gd->sx) {
                           px = 0;
                         pywrap++;                          pywrap++;
                         gl = grid_peek_line(gd, pywrap);                          gl = grid_peek_line(gd, pywrap);
                 }                  }

Legend:
Removed from v.1.260  
changed lines
  Added in v.1.261