Commit e487a05f authored by Simon Middleton's avatar Simon Middleton
Browse files

Changed default language for Unicode encodings to be ANY rather than english.

Version 0.09. Tagged as 'Unicode-0_09'
parent 67178217
/* (0.08) /* (0.09)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* *
*/ */
#define Module_MajorVersion_CMHG 0.08 #define Module_MajorVersion_CMHG 0.09
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 08 Dec 1997 #define Module_Date_CMHG 10 Dec 1997
#define Module_MajorVersion "0.08" #define Module_MajorVersion "0.09"
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "08 Dec 1997" #define Module_Date "10 Dec 1997"
...@@ -53,6 +53,8 @@ static char version[] = "Unicode library " Module_MajorVersion " " Module_Date " ...@@ -53,6 +53,8 @@ static char version[] = "Unicode library " Module_MajorVersion " " Module_Date "
#define ENC_iso2022_shifts 11 #define ENC_iso2022_shifts 11
#define ENC_acorn 12 #define ENC_acorn 12
#define lang_ANY ""
static EncList enclist[] = static EncList enclist[] =
{ {
{ csASCII /* 3 */, 1, "/US-ASCII/", lang_ENGLISH, (EncodingPriv *)ENC_ascii, NULL }, { csASCII /* 3 */, 1, "/US-ASCII/", lang_ENGLISH, (EncodingPriv *)ENC_ascii, NULL },
...@@ -101,10 +103,10 @@ static EncList enclist[] = ...@@ -101,10 +103,10 @@ static EncList enclist[] =
"\x1B\x24\x28\x44" }, "\x1B\x24\x28\x44" },
{ csISO2022CN /* 104 */, 0, "/ISO-2022-CN/", lang_CHINESE, (EncodingPriv *)ENC_iso2022 }, { csISO2022CN /* 104 */, 0, "/ISO-2022-CN/", lang_CHINESE, (EncodingPriv *)ENC_iso2022 },
{ csISO2022CN_EXT /* 105 */, 0, "/ISO-2022-CN-EXT/", lang_CHINESE, (EncodingPriv *)ENC_iso2022 }, { csISO2022CN_EXT /* 105 */, 0, "/ISO-2022-CN-EXT/", lang_CHINESE, (EncodingPriv *)ENC_iso2022 },
{ csUTF8 /* 106 */, 6, "/UTF-8/UNICODE-1-1-UTF-8/UNICODE-2-0-UTF-8/", lang_ENGLISH, (EncodingPriv *)ENC_utf8 }, /* More general!!! */ { csUTF8 /* 106 */, 6, "/UTF-8/UNICODE-1-1-UTF-8/UNICODE-2-0-UTF-8/", lang_ANY, (EncodingPriv *)ENC_utf8 }, /* More general!!! */
{ csUCS4 /* 1001 */, 4, "/ISO-10646-UCS-4/UCS-4/", lang_ENGLISH, (EncodingPriv *)ENC_ucs4 }, { csUCS4 /* 1001 */, 4, "/ISO-10646-UCS-4/UCS-4/", lang_ANY, (EncodingPriv *)ENC_ucs4 },
{ csUnicode11 /* 1010 */, 8, "/UCS-2/UTF-16/ISO-10646-UCS-2/UNICODE-1-1/UNICODE-2-0/", lang_ENGLISH, (EncodingPriv *)ENC_utf16 }, /* More general!!! */ { csUnicode11 /* 1010 */, 8, "/UCS-2/UTF-16/ISO-10646-UCS-2/UNICODE-1-1/UNICODE-2-0/", lang_ANY, (EncodingPriv *)ENC_utf16 }, /* More general!!! */
{ 2022, 0, "/ISO-2022/", lang_ENGLISH, (EncodingPriv *)ENC_iso2022 }, { 2022, 0, "/ISO-2022/", lang_ANY, (EncodingPriv *)ENC_iso2022 },
{ csGB2312 /* 2025 */, 2, "/X-EUC_CN/GB2312/CN-GB/GB_2312-80", lang_CHINESE, (EncodingPriv *)ENC_iso2022_euc, { csGB2312 /* 2025 */, 2, "/X-EUC_CN/GB2312/CN-GB/GB_2312-80", lang_CHINESE, (EncodingPriv *)ENC_iso2022_euc,
"\x1B\x24\x29\x41" }, /* Select G1 = GB 2312-80 */ "\x1B\x24\x29\x41" }, /* Select G1 = GB 2312-80 */
{ csBig5 /* 2026 */, 2, "/CN-BIG5/BIG5/", lang_CHINESE, (EncodingPriv *)ENC_bigfive }, { csBig5 /* 2026 */, 2, "/CN-BIG5/BIG5/", lang_CHINESE, (EncodingPriv *)ENC_bigfive },
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment