[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.87 and 1.88

version 1.87, 2016/05/27 23:02:17 version 1.88, 2016/05/27 23:06:12
Line 32 
Line 32 
 static int      screen_write_combine(struct screen_write_ctx *,  static int      screen_write_combine(struct screen_write_ctx *,
                     const struct utf8_data *);                      const struct utf8_data *);
   
   static const struct grid_cell screen_write_pad_cell = {
           GRID_FLAG_PADDING, 0, { .fg = 8 }, { .bg = 8 }, { { 0 }, 0, 0, 0 }
   };
   
 /* Initialise writing with a window. */  /* Initialise writing with a window. */
 void  void
 screen_write_start(struct screen_write_ctx *ctx, struct window_pane *wp,  screen_write_start(struct screen_write_ctx *ctx, struct window_pane *wp,
Line 972 
Line 976 
          * If the new character is UTF-8 wide, fill in padding cells. Have           * If the new character is UTF-8 wide, fill in padding cells. Have
          * already ensured there is enough room.           * already ensured there is enough room.
          */           */
         memcpy(&tmp_gc, &grid_default_cell, sizeof tmp_gc);  
         tmp_gc.flags |= GRID_FLAG_PADDING;  
         tmp_gc.data.width = 0;  
         for (xx = s->cx + 1; xx < s->cx + width; xx++)          for (xx = s->cx + 1; xx < s->cx + width; xx++)
                 grid_view_set_cell(gd, xx, s->cy, &tmp_gc);                  grid_view_set_cell(gd, xx, s->cy, &screen_write_pad_cell);
   
         /* Set the cell. */          /* Set the cell. */
         grid_view_set_cell(gd, s->cx, s->cy, gc);          grid_view_set_cell(gd, s->cx, s->cy, gc);

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.88