Changeset 13641


Ignore:
Timestamp:
2007-01-17T09:51:22+13:00 (17 years ago)
Author:
kjdon
Message:

added in unicode ranges for mongolian

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/indexers/mgpp/lib/unitool.cpp

    r12323 r13641  
    11981198 * GENERAL CATEGORY */
    11991199
    1200 #define NUM_LETTER_INFO 274
     1200#define NUM_LETTER_INFO 276
    12011201static const unirange letter_info[NUM_LETTER_INFO] = {
    12021202  {0x41,0x5a}, {0x61,0x7a}, {0xaa,0xaa}, {0xb5,0xb5},
     
    12511251  {0xf97,0xf97}, {0xf99,0xfad}, {0xfb1,0xfb7}, {0xfb9,0xfb9},
    12521252  {0x10a0,0x10c5}, {0x10d0,0x10f6}, {0x1100,0x1159}, {0x115f,0x11a2},
    1253   {0x11a8,0x11f9}, {0x1e00,0x1e9b}, {0x1ea0,0x1ef9}, {0x1f00,0x1f15},
     1253  {0x11a8,0x11f9}, {0x1820,0x1877}, {0x1880,0x18a9}, {0x1e00,0x1e9b},
     1254  {0x1ea0,0x1ef9}, {0x1f00,0x1f15},
    12541255  {0x1f18,0x1f1d}, {0x1f20,0x1f45}, {0x1f48,0x1f4d}, {0x1f50,0x1f57},
    12551256  {0x1f59,0x1f59}, {0x1f5b,0x1f5b}, {0x1f5d,0x1f5d}, {0x1f5f,0x1f7d},
     
    12751276 * have Nd in their GENERAL CATEGORY */
    12761277
    1277 #define NUM_DIGIT_INFO 16
     1278#define NUM_DIGIT_INFO 17
    12781279static const unirange digit_info[NUM_DIGIT_INFO] = {
    12791280  {0x30,0x39}, {0x660,0x669}, {0x6f0,0x6f9}, {0x966,0x96f},
    12801281  {0x9e6,0x9ef}, {0xa66,0xa6f}, {0xae6,0xaef}, {0xb66,0xb6f},
    12811282  {0xbe7,0xbef}, {0xc66,0xc6f}, {0xce6,0xcef}, {0xd66,0xd6f},
    1282   {0xe50,0xe59}, {0xed0,0xed9}, {0xf20,0xf29}, {0xff10,0xff19}
     1283  {0xe50,0xe59}, {0xed0,0xed9}, {0xf20,0xf29}, {0xff10,0xff19},
     1284  {0x1810,0x1819}
    12831285};
    12841286
  • trunk/mgpp/lib/unitool.cpp

    r12323 r13641  
    11981198 * GENERAL CATEGORY */
    11991199
    1200 #define NUM_LETTER_INFO 274
     1200#define NUM_LETTER_INFO 276
    12011201static const unirange letter_info[NUM_LETTER_INFO] = {
    12021202  {0x41,0x5a}, {0x61,0x7a}, {0xaa,0xaa}, {0xb5,0xb5},
     
    12511251  {0xf97,0xf97}, {0xf99,0xfad}, {0xfb1,0xfb7}, {0xfb9,0xfb9},
    12521252  {0x10a0,0x10c5}, {0x10d0,0x10f6}, {0x1100,0x1159}, {0x115f,0x11a2},
    1253   {0x11a8,0x11f9}, {0x1e00,0x1e9b}, {0x1ea0,0x1ef9}, {0x1f00,0x1f15},
     1253  {0x11a8,0x11f9}, {0x1820,0x1877}, {0x1880,0x18a9}, {0x1e00,0x1e9b},
     1254  {0x1ea0,0x1ef9}, {0x1f00,0x1f15},
    12541255  {0x1f18,0x1f1d}, {0x1f20,0x1f45}, {0x1f48,0x1f4d}, {0x1f50,0x1f57},
    12551256  {0x1f59,0x1f59}, {0x1f5b,0x1f5b}, {0x1f5d,0x1f5d}, {0x1f5f,0x1f7d},
     
    12751276 * have Nd in their GENERAL CATEGORY */
    12761277
    1277 #define NUM_DIGIT_INFO 16
     1278#define NUM_DIGIT_INFO 17
    12781279static const unirange digit_info[NUM_DIGIT_INFO] = {
    12791280  {0x30,0x39}, {0x660,0x669}, {0x6f0,0x6f9}, {0x966,0x96f},
    12801281  {0x9e6,0x9ef}, {0xa66,0xa6f}, {0xae6,0xaef}, {0xb66,0xb6f},
    12811282  {0xbe7,0xbef}, {0xc66,0xc6f}, {0xce6,0xcef}, {0xd66,0xd6f},
    1282   {0xe50,0xe59}, {0xed0,0xed9}, {0xf20,0xf29}, {0xff10,0xff19}
     1283  {0xe50,0xe59}, {0xed0,0xed9}, {0xf20,0xf29}, {0xff10,0xff19},
     1284  {0x1810,0x1819}
    12831285};
    12841286
Note: See TracChangeset for help on using the changeset viewer.