diff --git a/terminal/terminal.c b/terminal/terminal.c index 4c453809..90150044 100644 --- a/terminal/terminal.c +++ b/terminal/terminal.c @@ -3637,10 +3637,6 @@ unsigned long term_translate( if (t > 0x10FFFF) return UCSINVALID; - /* This is currently a TagPhobic application.. */ - if (t >= 0xE0000 && t <= 0xE007F) - return UCSINCOMPLETE; - /* U+FEFF is best seen as a null. */ if (t == 0xFEFF) return UCSINCOMPLETE; diff --git a/test/utf8.txt b/test/utf8.txt index 3b45f9eb..c76fc678 100644 --- a/test/utf8.txt +++ b/test/utf8.txt @@ -27,4 +27,4 @@ Dedicated emoji: 💜 🙂 🙁 (wide and should look correct) Combined via ZWJ: 👩‍💻 (PuTTY doesn't understand ZWJ) Skin tone mod: 👩🏻 👩🏿 (wcwidth doesn't know those are modifiers) Flags: 🇬🇧 🇺🇦 🇪🇺 (should work in GTK 2 or better) - +Flags using tags: 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🏴󠁧󠁢󠁳󠁣󠁴󠁿 🏴󠁧󠁢󠁷󠁬󠁳󠁿 (the tags are treated as combining marks)