Index: generators/TableGenerator.m ================================================================== --- generators/TableGenerator.m +++ generators/TableGenerator.m @@ -331,11 +331,11 @@ @"extern const of_unichar_t* const\n" @" of_unicode_upper_table[OF_UNICODE_UPPER_TABLE_SIZE];\n" @"extern const of_unichar_t* const\n" @" of_unicode_lower_table[OF_UNICODE_LOWER_TABLE_SIZE];\n" @"extern const of_unichar_t* const\n" - @" of_unicode_lower_table[" + @" of_unicode_casefolding_table[" @"OF_UNICODE_CASEFOLDING_TABLE_SIZE];\n"]; [pool release]; } @end Index: src/unicode.h ================================================================== --- src/unicode.h +++ src/unicode.h @@ -18,6 +18,6 @@ extern const of_unichar_t* const of_unicode_upper_table[OF_UNICODE_UPPER_TABLE_SIZE]; extern const of_unichar_t* const of_unicode_lower_table[OF_UNICODE_LOWER_TABLE_SIZE]; extern const of_unichar_t* const - of_unicode_lower_table[OF_UNICODE_CASEFOLDING_TABLE_SIZE]; + of_unicode_casefolding_table[OF_UNICODE_CASEFOLDING_TABLE_SIZE];