mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-09 08:21:01 -04:00
unicode-combining: completely remove unicode combining characters when feature is disabled
This commit is contained in:
parent
66e5abdda3
commit
3474624c2c
5 changed files with 26 additions and 2 deletions
|
|
@ -77,16 +77,21 @@ struct damage {
|
|||
int lines;
|
||||
};
|
||||
|
||||
#if FOOT_UNICODE_COMBINING
|
||||
struct combining_chars {
|
||||
uint8_t count;
|
||||
wchar_t chars[2]; /* TODO: how many do we need? */
|
||||
};
|
||||
#endif
|
||||
|
||||
struct row {
|
||||
struct cell *cells;
|
||||
bool dirty;
|
||||
bool linebreak;
|
||||
|
||||
#if FOOT_UNICODE_COMBINING
|
||||
struct combining_chars *comb_chars;
|
||||
#endif
|
||||
};
|
||||
|
||||
struct sixel {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue