Skip to content

Commit 2d821c4

Browse files
committed
* codesets_table.h: fixed a bug in the AmigaPL<>UTF8 conversion routines
where the 0x00C2 characters wasn't converted to 0x0104 in the ucs4 conversion routines.
1 parent 65ad39c commit 2d821c4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ codesets.library - Library for handling different codesets
55
$Id$
66
$URL$
77

8+
2014-01-18 Jens Maus <mail@jens-maus.de>
9+
10+
* codesets_table.h: fixed a bug in the AmigaPL<>UTF8 conversion routines
11+
where the 0x00C2 characters wasn't converted to 0x0104 in the ucs4
12+
conversion routines.
13+
814
#### 6.16 RELEASE ########################################################
915

1016
2013-12-13 Jens Maus <mail@jens-maus.de>

src/codesets_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ static const unsigned short amigapl_to_ucs4[] = /* starts at 0xa0 */
158158
0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
159159
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
160160
0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
161-
0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
161+
0x00C0, 0x00C1, 0x0104, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
162162
0x00C8, 0x00C9, 0x0106, 0x0118, 0x00CC, 0x00CD, 0x0141, 0x0143,
163163
0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x015A, 0x00D5, 0x00D6, 0x00D7,
164164
0x00D8, 0x00D9, 0x0179, 0x017B, 0x00DC, 0x00DD, 0x00DE, 0x00DF,

0 commit comments

Comments
 (0)