comparison src/file-coding.h @ 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 70921960b980
children 34ca43a57692
comparison
equal deleted inserted replaced
1428:10738b72057d 1429:969b7290edca
177 enum eol_type 177 enum eol_type
178 { 178 {
179 EOL_LF, 179 EOL_LF,
180 EOL_CRLF, 180 EOL_CRLF,
181 EOL_CR, 181 EOL_CR,
182 EOL_AUTODETECT, 182 EOL_AUTODETECT
183 }; 183 };
184 184
185 struct Lisp_Coding_System 185 struct Lisp_Coding_System
186 { 186 {
187 struct lcrecord_header header; 187 struct lcrecord_header header;
224 mswindows_multibyte_coding_system, 224 mswindows_multibyte_coding_system,
225 iso2022_coding_system, 225 iso2022_coding_system,
226 ccl_coding_system, 226 ccl_coding_system,
227 shift_jis_coding_system, 227 shift_jis_coding_system,
228 big5_coding_system, 228 big5_coding_system,
229 unicode_coding_system, 229 unicode_coding_system
230 }; 230 };
231 231
232 struct coding_system_methods 232 struct coding_system_methods
233 { 233 {
234 Lisp_Object type; 234 Lisp_Object type;
728 "specific sequences" you can see that would totally rule out 728 "specific sequences" you can see that would totally rule out
729 recognition. */ 729 recognition. */
730 DET_QUITE_IMPROBABLE = -2, 730 DET_QUITE_IMPROBABLE = -2,
731 /* An erroneous sequence was seen. */ 731 /* An erroneous sequence was seen. */
732 DET_NEARLY_IMPOSSIBLE = -3, 732 DET_NEARLY_IMPOSSIBLE = -3,
733 DET_LOWEST = -3, 733 DET_LOWEST = -3
734 }; 734 };
735 735
736 extern int coding_detector_count; 736 extern int coding_detector_count;
737 extern int coding_detector_category_count; 737 extern int coding_detector_category_count;
738 738