Sync OpenBSD patchset 1122:

Use a predefined structure for not-space cells used to set attributes.
This commit is contained in:
Tiago Cunha
2012-05-30 13:41:58 +00:00
parent 626c8aa8e7
commit c6fc8771a9
3 changed files with 6 additions and 7 deletions

1
grid.c
View File

@ -36,6 +36,7 @@
/* Default grid cell data. */
const struct grid_cell grid_default_cell = { 0, 0, 8, 8, ' ' };
const struct grid_cell grid_marker_cell = { 0, 0, 8, 8, '_' };
#define grid_put_cell(gd, px, py, gc) do { \
memcpy(&gd->linedata[py].celldata[px], \