[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.289 and 1.290

version 1.289, 2020/05/25 09:32:10 version 1.290, 2020/05/25 12:12:58
Line 3167 
Line 3167 
          */           */
         for (at = start; at <= end; at++) {          for (at = start; at <= end; at++) {
                 py = at / sx;                  py = at / sx;
                 px = at % (py * sx);                  px = at - (py * sx);
   
                 grid_get_cell(gd, px, py, &gc);                  grid_get_cell(gd, px, py, &gc);
                 buf = xrealloc(buf, len + gc.data.size + 1);                  buf = xrealloc(buf, len + gc.data.size + 1);

Legend:
Removed from v.1.289  
changed lines
  Added in v.1.290