mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fix character mapping error
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32748 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7f85481fda
commit
f39930a712
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-03-31 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/unicode/gsm0338.h:
|
||||
Fix error mapping capital C-cedilla.
|
||||
|
||||
2011-03-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/GNUstepBase/GSUnion.h: Remove problematic types.
|
||||
|
|
|
@ -22,7 +22,7 @@ static unichar GSM0338_char_to_uni_table[] =
|
|||
0x00F9,
|
||||
0x00EC,
|
||||
0x00F2,
|
||||
0x00E7,
|
||||
0x00C7,
|
||||
0x000A,
|
||||
0x00D8,
|
||||
0x00F8,
|
||||
|
@ -243,6 +243,7 @@ static _ucc_ GSM0338_uni_to_char_table[] =
|
|||
{0x00C4,0x5B,},
|
||||
{0x00C5,0x0E,},
|
||||
{0x00C6,0x1C,},
|
||||
{0x00C7,0x09,},
|
||||
{0x00C9,0x1F,},
|
||||
{0x00D1,0x5D,},
|
||||
{0x00D6,0x5C,},
|
||||
|
@ -253,7 +254,6 @@ static _ucc_ GSM0338_uni_to_char_table[] =
|
|||
{0x00E4,0x7B,},
|
||||
{0x00E5,0x0F,},
|
||||
{0x00E6,0x1D,},
|
||||
{0x00E7,0x09,},
|
||||
{0x00E8,0x04,},
|
||||
{0x00E9,0x05,},
|
||||
{0x00EC,0x07,},
|
||||
|
|
Loading…
Reference in a new issue