mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-20 01:40:14 -05:00
term: rename COMB_CHARS_LO,HI -> CELL_COMB_CHARS_LO,HI
This commit is contained in:
parent
4cf7195695
commit
5c99e8013b
4 changed files with 14 additions and 13 deletions
6
render.c
6
render.c
|
|
@ -408,10 +408,10 @@ render_cell(struct terminal *term, pixman_image_t *pix,
|
|||
if (cell->wc != 0) {
|
||||
wchar_t base = cell->wc;
|
||||
|
||||
if (base >= COMB_CHARS_LO &&
|
||||
base < (COMB_CHARS_LO + term->composed_count))
|
||||
if (base >= CELL_COMB_CHARS_LO &&
|
||||
base < (CELL_COMB_CHARS_LO + term->composed_count))
|
||||
{
|
||||
composed = &term->composed[base - COMB_CHARS_LO];
|
||||
composed = &term->composed[base - CELL_COMB_CHARS_LO];
|
||||
base = composed->base;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue