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

View file

@ -48,6 +48,8 @@ struct attributes {
};
static_assert(sizeof(struct attributes) == 8, "bad size");
#define CELL_COMB_CHARS_LO 0x40000000ul
#define CELL_COMB_CHARS_HI 0x400ffffful
struct cell {
wchar_t wc;
struct attributes attrs;
@ -216,8 +218,6 @@ struct terminal {
struct grid alt;
struct grid *grid;
#define COMB_CHARS_LO 0x40000000ul
#define COMB_CHARS_HI 0x400ffffful
size_t composed_count;
struct composed *composed;