We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65ad39c commit 2d821c4Copy full SHA for 2d821c4
2 files changed
ChangeLog
@@ -5,6 +5,12 @@ codesets.library - Library for handling different codesets
5
$Id$
6
$URL$
7
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
14
#### 6.16 RELEASE ########################################################
15
16
2013-12-13 Jens Maus <mail@jens-maus.de>
src/codesets_table.h
@@ -158,7 +158,7 @@ static const unsigned short amigapl_to_ucs4[] = /* starts at 0xa0 */
158
0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
159
0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
160
0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
161
- 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
+ 0x00C0, 0x00C1, 0x0104, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
162
0x00C8, 0x00C9, 0x0106, 0x0118, 0x00CC, 0x00CD, 0x0141, 0x0143,
163
0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x015A, 0x00D5, 0x00D6, 0x00D7,
164
0x00D8, 0x00D9, 0x0179, 0x017B, 0x00DC, 0x00DD, 0x00DE, 0x00DF,
0 commit comments