[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.1 and 1.2

version 1.1, 2009/06/01 22:58:49 version 1.2, 2009/07/02 16:15:43
Line 423 
Line 423 
         /* Find start and end. */          /* Find start and end. */
         xx = data->cx + data->ox;          xx = data->cx + data->ox;
         yy = screen_hsize(&wp->base) + data->cy - data->oy;          yy = screen_hsize(&wp->base) + data->cy - data->oy;
         if (xx < data->selx || (yy == data->sely && xx < data->selx)) {          if (yy < data->sely || (yy == data->sely && xx < data->selx)) {
                 sx = xx; sy = yy;                  sx = xx; sy = yy;
                 ex = data->selx; ey = data->sely;                  ex = data->selx; ey = data->sely;
         } else {          } else {

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2