grid: grid_memset() -> grid_memclear()

This commit is contained in:
Daniel Eklöf 2019-07-07 17:10:15 +02:00
parent abff0e205e
commit 48528419c4
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 7 additions and 8 deletions

2
csi.c
View file

@ -630,7 +630,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
tll_free(term->alt.damage);
tll_free(term->alt.scroll_damage);
grid_memset(term->grid, 0, 0, term->rows * term->cols);
grid_memclear(term->grid, 0, term->rows * term->cols);
term_damage_erase(term, 0, term->rows * term->cols);
}
break;