diff options
author | nicm <nicm> | 2015-11-14 12:03:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-14 12:03:23 +0000 |
commit | 3db0d50df44d91a110f9320cb4fd327c97b96df2 (patch) | |
tree | 7abe8f5e9da869fd2562311e811a60f5d2ef53c5 /utf8.c | |
parent | 205d15e82d9e4aa90c7980b509d3489ad8eb6c2a (diff) | |
download | rtmux-3db0d50df44d91a110f9320cb4fd327c97b96df2.tar.gz rtmux-3db0d50df44d91a110f9320cb4fd327c97b96df2.tar.bz2 rtmux-3db0d50df44d91a110f9320cb4fd327c97b96df2.zip |
The private use area at U+E000 to U+F8FF is not very useful if it is
width 0, make it width 1 instead.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -264,7 +264,7 @@ static struct utf8_width_entry utf8_width_table[] = { { 0x0abe5, 0x0abe5, 0, NULL, NULL }, { 0x0abed, 0x0abed, 0, NULL, NULL }, { 0x0f900, 0x0fa6d, 2, NULL, NULL }, - { 0x0d800, 0x0f8ff, 0, NULL, NULL }, + { 0x0d800, 0x0dfff, 0, NULL, NULL }, { 0x0fa70, 0x0fad9, 2, NULL, NULL }, { 0x0fff9, 0x0fffb, 0, NULL, NULL }, { 0x0fe30, 0x0fe52, 2, NULL, NULL }, |