[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.158 and 1.159

version 1.158, 2019/09/24 15:52:14 version 1.159, 2019/09/24 20:44:58
Line 1326 
Line 1326 
                 }                  }
         }          }
   
         memcpy(&gc, &ci->gc, sizeof gc);          grid_view_set_cells(s->grid, s->cx, s->cy, &ci->gc, ci->data, ci->used);
         grid_view_set_cells(s->grid, s->cx, s->cy, &gc, ci->data, ci->used);  
         screen_write_set_cursor(ctx, s->cx + ci->used, -1);          screen_write_set_cursor(ctx, s->cx + ci->used, -1);
   
         for (xx = s->cx; xx < screen_size_x(s); xx++) {          for (xx = s->cx; xx < screen_size_x(s); xx++) {
Line 1351 
Line 1350 
         /*          /*
          * Don't need to check that the attributes and whatnot are still the           * Don't need to check that the attributes and whatnot are still the
          * same - input_parse will end the collection when anything that isn't           * same - input_parse will end the collection when anything that isn't
          * a plain character is encountered. Also nothing should make it here           * a plain character is encountered.
          * that isn't a single ASCII character.  
          */           */
   
         collect = 1;          collect = 1;

Legend:
Removed from v.1.158  
changed lines
  Added in v.1.159