aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-31 18:12:57 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-31 18:12:57 +0100
commit460f8276449f0933f242c9295b241ec213bcef82 (patch)
tree1ab106c367abef17504d1e30aac7408745144043 /libbb
parentb1edf20f1848cd741e8a8395afb4a4655a210906 (diff)
downloadbusybox-w32-460f8276449f0933f242c9295b241ec213bcef82.tar.gz
busybox-w32-460f8276449f0933f242c9295b241ec213bcef82.tar.bz2
busybox-w32-460f8276449f0933f242c9295b241ec213bcef82.zip
better wording in Config
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r--libbb/unicode_wcwidth.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/unicode_wcwidth.c b/libbb/unicode_wcwidth.c
index c7cc524a6..a81a98038 100644
--- a/libbb/unicode_wcwidth.c
+++ b/libbb/unicode_wcwidth.c
@@ -534,6 +534,7 @@ static int wcwidth(unsigned ucs)
534 || ucs == 0x2329 /* left-pointing angle bracket; also CJK punct. char */ 534 || ucs == 0x2329 /* left-pointing angle bracket; also CJK punct. char */
535 || ucs == 0x232a /* right-pointing angle bracket; also CJK punct. char */ 535 || ucs == 0x232a /* right-pointing angle bracket; also CJK punct. char */
536 || (ucs >= 0x2e80 && ucs <= 0xa4cf && ucs != 0x303f) /* CJK ... Yi */ 536 || (ucs >= 0x2e80 && ucs <= 0xa4cf && ucs != 0x303f) /* CJK ... Yi */
537# if LAST_SUPPORTED_WCHAR >= 0xac00
537 || (ucs >= 0xac00 && ucs <= 0xd7a3) /* Hangul Syllables */ 538 || (ucs >= 0xac00 && ucs <= 0xd7a3) /* Hangul Syllables */
538 || (ucs >= 0xf900 && ucs <= 0xfaff) /* CJK Compatibility Ideographs */ 539 || (ucs >= 0xf900 && ucs <= 0xfaff) /* CJK Compatibility Ideographs */
539 || (ucs >= 0xfe10 && ucs <= 0xfe19) /* Vertical forms */ 540 || (ucs >= 0xfe10 && ucs <= 0xfe19) /* Vertical forms */
@@ -541,6 +542,7 @@ static int wcwidth(unsigned ucs)
541 || (ucs >= 0xff00 && ucs <= 0xff60) /* Fullwidth Forms */ 542 || (ucs >= 0xff00 && ucs <= 0xff60) /* Fullwidth Forms */
542 || (ucs >= 0xffe0 && ucs <= 0xffe6) 543 || (ucs >= 0xffe0 && ucs <= 0xffe6)
543 || ((ucs >> 17) == (2 >> 1)) /* 20000..3ffff: Supplementary and Tertiary Ideographic Planes */ 544 || ((ucs >> 17) == (2 >> 1)) /* 20000..3ffff: Supplementary and Tertiary Ideographic Planes */
545# endif
544 ); 546 );
545# endif 547# endif
546#endif 548#endif