=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/screen-write.c,v retrieving revision 1.183 retrieving revision 1.184 diff -c -r1.183 -r1.184 *** src/usr.bin/tmux/screen-write.c 2020/06/02 20:10:23 1.183 --- src/usr.bin/tmux/screen-write.c 2020/06/02 20:51:46 1.184 *************** *** 1,4 **** ! /* $OpenBSD: screen-write.c,v 1.183 2020/06/02 20:10:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: screen-write.c,v 1.184 2020/06/02 20:51:46 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 38,47 **** static const struct grid_cell *screen_write_combine(struct screen_write_ctx *, const struct utf8_data *, u_int *); - static const struct grid_cell screen_write_pad_cell = { - { { 0 }, 0, 0, 0 }, 0, GRID_FLAG_PADDING, 8, 8, 0 - }; - struct screen_write_collect_item { u_int x; int wrapped; --- 38,43 ---- *************** *** 1774,1780 **** */ for (xx = s->cx + 1; xx < s->cx + width; xx++) { log_debug("%s: new padding at %u,%u", __func__, xx, s->cy); ! grid_view_set_cell(gd, xx, s->cy, &screen_write_pad_cell); skip = 0; } --- 1770,1776 ---- */ for (xx = s->cx + 1; xx < s->cx + width; xx++) { log_debug("%s: new padding at %u,%u", __func__, xx, s->cy); ! grid_view_set_padding(gd, xx, s->cy); skip = 0; }