diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-10-28 19:58:14 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-10-28 19:58:14 +0100 |
commit | 178894b0fe60802c8e2bf2e6af740b521206bb4f (patch) | |
tree | 8b7a929d953eb49674330037239be8ab1e8c5094 /compat/utf8proc.c | |
parent | 4dbbcff72bd86d9761e178caa21cabe0c6e62547 (diff) | |
download | rtmux-178894b0fe60802c8e2bf2e6af740b521206bb4f.tar.gz rtmux-178894b0fe60802c8e2bf2e6af740b521206bb4f.tar.bz2 rtmux-178894b0fe60802c8e2bf2e6af740b521206bb4f.zip |
Do not force symbols to width 1, from Yen Chi Hsuan.
Diffstat (limited to 'compat/utf8proc.c')
-rw-r--r-- | compat/utf8proc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compat/utf8proc.c b/compat/utf8proc.c index 023d762a..f7f5c987 100644 --- a/compat/utf8proc.c +++ b/compat/utf8proc.c @@ -33,10 +33,6 @@ utf8proc_wcwidth(wchar_t wc) */ return (1); } - if (cat == UTF8PROC_CATEGORY_SO) { - /* Symbols, like emoji, should always use width 1. */ - return (1); - } return (utf8proc_charwidth(wc)); } |