Add is_emoji_presentation_base to char props table

This commit is contained in:
Kovid Goyal
2025-03-24 13:55:49 +05:30
parent f02245af79
commit 7697a1650d
4 changed files with 67102 additions and 67091 deletions

View File

@@ -17,7 +17,8 @@ typedef union CharProps {
uint8_t is_invalid: 1;
uint8_t shifted_width : 3;
uint8_t is_non_rendered : 1;
uint8_t : 4;
uint8_t is_emoji_presentation_base : 1;
uint8_t : 3;
};
uint16_t val;
} CharProps;