comparison src/unicode.c @ 1429:969b7290edca

[xemacs-hg @ 2003-04-24 05:33:43 by youngs] 2003-04-24 Matthew O. Persico <persicom@acedsl.com> * unicode.c: Removed trailing commas in some enums; older (Solaris 2.7 cc) compiler produced volumous warnings. * text.c: Replaced char initialization of static Ibyte strcasecmp_charmap[] with octal numeric init. Apparently older (Solaris 2.7 cc) compiler treats quoted octals as signed, causing 256 signed-assigned-to-unsigned warnings. * lrecord.h: Removed trailing commas in some enums; older (Solaris 2.7 cc) compiler produced volumous warnings. * lisp.h: Removed trailing commas in some enums; older (Solaris 2.7 cc) compiler produced volumous warnings. * frame.c: Removed trailing commas in some enums; older (Solaris 2.7 cc) compiler produced volumous warnings. * file-coding.h: Removed trailing commas in some enums; older (Solaris 2.7 cc) compiler produced volumous warnings.
author youngs
date Thu, 24 Apr 2003 05:33:44 +0000
parents b531bf8658e9
children a8d8f419b459
comparison
equal deleted inserted replaced
1428:10738b72057d 1429:969b7290edca
1472 enum unicode_type 1472 enum unicode_type
1473 { 1473 {
1474 UNICODE_UTF_16, 1474 UNICODE_UTF_16,
1475 UNICODE_UTF_8, 1475 UNICODE_UTF_8,
1476 UNICODE_UTF_7, 1476 UNICODE_UTF_7,
1477 UNICODE_UCS_4, 1477 UNICODE_UCS_4
1478 }; 1478 };
1479 1479
1480 struct unicode_coding_system 1480 struct unicode_coding_system
1481 { 1481 {
1482 enum unicode_type type; 1482 enum unicode_type type;