mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 17:12:03 +00:00
Fix gsm charset error
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21757 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d74a6d29a3
commit
9a78fab576
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-09-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Headers/Additions/GNUstepBase/unicode/gsm0338.h: Map unicode
|
||||||
|
no-break-space character to gsm space rather than to gsm escape
|
||||||
|
character.
|
||||||
|
|
||||||
2005-09-28 Richard Frith-Macdonald <rfm@gnu.org>
|
2005-09-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/Additions/GSMime.m: (-convertToBinary, -convertToBase64)
|
* Source/Additions/GSMime.m: (-convertToBinary, -convertToBase64)
|
||||||
|
|
|
@ -234,7 +234,7 @@ _ucc_ GSM0338_uni_to_char_table[] =
|
||||||
{0x0078,0x78,},
|
{0x0078,0x78,},
|
||||||
{0x0079,0x79,},
|
{0x0079,0x79,},
|
||||||
{0x007A,0x7A,},
|
{0x007A,0x7A,},
|
||||||
{0x00A0,0x1B,},
|
{0x00A0,0x20,}, /* Map unicode no-break-space to gsm space */
|
||||||
{0x00A1,0x40,},
|
{0x00A1,0x40,},
|
||||||
{0x00A3,0x01,},
|
{0x00A3,0x01,},
|
||||||
{0x00A4,0x24,},
|
{0x00A4,0x24,},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue