=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/grid.c,v retrieving revision 1.105 retrieving revision 1.106 diff -c -r1.105 -r1.106 *** src/usr.bin/tmux/grid.c 2020/04/09 13:53:50 1.105 --- src/usr.bin/tmux/grid.c 2020/04/15 12:59:20 1.106 *************** *** 1,4 **** ! /* $OpenBSD: grid.c,v 1.105 2020/04/09 13:53:50 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: grid.c,v 1.106 2020/04/15 12:59:20 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 48,55 **** GRID_FLAG_CLEARED, { .data = { 0, 8, 8, ' ' } } }; - static void grid_empty_line(struct grid *, u_int, u_int); - /* Store cell in entry. */ static void grid_store_cell(struct grid_cell_entry *gce, const struct grid_cell *gc, --- 48,53 ---- *************** *** 454,460 **** } /* Empty a line and set background colour if needed. */ ! static void grid_empty_line(struct grid *gd, u_int py, u_int bg) { memset(&gd->linedata[py], 0, sizeof gd->linedata[py]); --- 452,458 ---- } /* Empty a line and set background colour if needed. */ ! void grid_empty_line(struct grid *gd, u_int py, u_int bg) { memset(&gd->linedata[py], 0, sizeof gd->linedata[py]);