diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-14 12:03:24 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-14 12:03:24 +0000 |
commit | bfd7ef99a22b7ddd8a1d3cd408b120275144fcf3 (patch) | |
tree | 931a87e4316565f78633fea24fdc5e6e4f42024e /usr.bin/tmux/utf8.c | |
parent | 74acbd778e5459d25327e0d15cbc4e4f623082fd (diff) |
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 'usr.bin/tmux/utf8.c')
-rw-r--r-- | usr.bin/tmux/utf8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/utf8.c b/usr.bin/tmux/utf8.c index 52519a3d58d..7caf1a7a526 100644 --- a/usr.bin/tmux/utf8.c +++ b/usr.bin/tmux/utf8.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utf8.c,v 1.23 2015/11/14 11:45:43 nicm Exp $ */ +/* $OpenBSD: utf8.c,v 1.24 2015/11/14 12:03:23 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 }, |