term: rename COMB_CHARS_LO,HI -> CELL_COMB_CHARS_LO,HI

This commit is contained in:
Daniel Eklöf 2020-07-14 16:41:57 +02:00
parent 4cf7195695
commit 5c99e8013b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 14 additions and 13 deletions

12
vt.c
View file

@ -550,9 +550,9 @@ action_utf8_print(struct terminal *term, wchar_t wc)
}
const struct composed *composed =
(base >= COMB_CHARS_LO &&
base < (COMB_CHARS_LO + term->composed_count))
? &term->composed[base - COMB_CHARS_LO]
(base >= CELL_COMB_CHARS_LO &&
base < (CELL_COMB_CHARS_LO + term->composed_count))
? &term->composed[base - CELL_COMB_CHARS_LO]
: NULL;
if (composed != NULL)
@ -635,7 +635,7 @@ action_utf8_print(struct terminal *term, wchar_t wc)
if (cc->combining[wanted_count - 1] != wc)
continue;
term_print(term, COMB_CHARS_LO + i, base_width);
term_print(term, CELL_COMB_CHARS_LO + i, base_width);
return;
}
@ -648,12 +648,12 @@ action_utf8_print(struct terminal *term, wchar_t wc)
new_cc.combining[i] = composed->combining[i];
new_cc.combining[wanted_count - 1] = wc;
if (term->composed_count < COMB_CHARS_HI) {
if (term->composed_count < CELL_COMB_CHARS_HI) {
term->composed_count++;
term->composed = realloc(term->composed, term->composed_count * sizeof(term->composed[0]));
term->composed[term->composed_count - 1] = new_cc;
term_print(term, COMB_CHARS_LO + term->composed_count - 1, base_width);
term_print(term, CELL_COMB_CHARS_LO + term->composed_count - 1, base_width);
return;
} else {
/* We reached our maximum number of allowed composed