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

Diff for /src/usr.bin/tmux/screen-write.c between version 1.93 and 1.94

version 1.93, 2016/09/02 20:57:20 version 1.94, 2016/09/29 08:50:43
Line 1267 
Line 1267 
         }          }
   
         /*          /*
          * Overwrite any padding cells that belong to a UTF-8 character           * Overwrite any padding cells that belong to any UTF-8 characters we'll be
          * we'll be overwriting with the current character.           * overwriting with the current character.
          */           */
         if (gc->data.width != 1 || gc->flags & GRID_FLAG_PADDING) {          if (width != 1 || gc->data.width != 1 || gc->flags & GRID_FLAG_PADDING) {
                 xx = s->cx + width - 1;                  xx = s->cx + width - 1;
                 while (++xx < screen_size_x(s)) {                  while (++xx < screen_size_x(s)) {
                         grid_view_get_cell(gd, xx, s->cy, &tmp_gc);                          grid_view_get_cell(gd, xx, s->cy, &tmp_gc);

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.94