[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.285 and 1.286

version 1.285, 2020/05/16 15:49:20 version 1.286, 2020/05/16 16:03:30
Line 1365 
Line 1365 
                                 px = data->cx;                                  px = data->cx;
                                 py = screen_hsize(s) + data->cy - data->oy;                                  py = screen_hsize(s) + data->cy - data->oy;
                                 grid_get_cell(s->grid, px, py, &gc);                                  grid_get_cell(s->grid, px, py, &gc);
                                 if (gc.data.size != 1 ||                                  if (gc.data.size == 1 &&
                                     (gc.flags & GRID_FLAG_PADDING) ||                                      (~gc.flags & GRID_FLAG_PADDING) &&
                                     strchr(close, *gc.data.data) == NULL)                                      strchr(close, *gc.data.data) != NULL)
                                         window_copy_scroll_to(wme, sx, sy);                                          window_copy_scroll_to(wme, sx, sy);
                                 break;                                  break;
                         }                          }

Legend:
Removed from v.1.285  
changed lines
  Added in v.1.286