summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2008-08-24 12:26:56 +0200
committerBruno Haible <bruno@clisp.org>2008-08-24 12:26:56 +0200
commit21174cc3af3cb61aa048c1c34b51811e8c4df210 (patch)
treea60647bd37d2ce7df374683e7c89e9af459398a5 /lib
parent81040496d5e98d7913ea385763c3e4b4e85d74f5 (diff)
downloadgnulib-21174cc3af3cb61aa048c1c34b51811e8c4df210.tar.gz
Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
Diffstat (limited to 'lib')
-rw-r--r--lib/uniwidth/width.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/uniwidth/width.c b/lib/uniwidth/width.c
index 543dd5d56d..4161c26e66 100644
--- a/lib/uniwidth/width.c
+++ b/lib/uniwidth/width.c
@@ -1,5 +1,5 @@
/* Determine display width of Unicode character.
- Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
+ Copyright (C) 2001-2002, 2006-2008 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2002.
This program is free software: you can redistribute it and/or modify it
@@ -36,7 +36,7 @@ static const unsigned char nonspacing_table_data[22*64] = {
/* 0x0000-0x01ff */
0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, /* 0x0000-0x003f */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, /* 0x0040-0x007f */
- 0xff, 0xff, 0xff, 0xff, 0x00, 0x08, 0x00, 0x00, /* 0x0080-0x00bf */
+ 0xff, 0xff, 0xff, 0xff, 0x00, 0x20, 0x00, 0x00, /* 0x0080-0x00bf */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x00c0-0x00ff */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0100-0x013f */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0140-0x017f */