Revert "internals: Support characters beyond the first unicode plane (WIP)"

This reverts commit d05c59f35b.
This commit is contained in:
Solomon Peachy 2025-08-20 16:09:49 -04:00
parent d05c59f35b
commit 84504c7471
44 changed files with 335 additions and 480 deletions

View file

@ -135,10 +135,10 @@ static void sleep_yield(void)
#define yield sleep_yield
}
/* make sure tag can be displayed by font pf */
/* make sure tag can be displayed by font pf*/
static bool text_is_displayable(struct font *pf, unsigned char *src)
{
ucschar_t code;
unsigned short code;
const unsigned char *ptr = src;
while(*ptr)
{