changeset 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 10738b72057d
children 5fa648ec10df
files src/ChangeLog src/file-coding.h src/frame.c src/lisp.h src/lrecord.h src/text.c src/unicode.c
diffstat 7 files changed, 64 insertions(+), 41 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/ChangeLog	Thu Apr 24 05:33:44 2003 +0000
@@ -1,3 +1,25 @@
+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.
+
 2003-04-17  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	Fix stale match data after failed search bug.
--- a/src/file-coding.h	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/file-coding.h	Thu Apr 24 05:33:44 2003 +0000
@@ -179,7 +179,7 @@
   EOL_LF,
   EOL_CRLF,
   EOL_CR,
-  EOL_AUTODETECT,
+  EOL_AUTODETECT
 };
 
 struct Lisp_Coding_System
@@ -226,7 +226,7 @@
   ccl_coding_system,
   shift_jis_coding_system,
   big5_coding_system,
-  unicode_coding_system,
+  unicode_coding_system
 };
 
 struct coding_system_methods
@@ -730,7 +730,7 @@
   DET_QUITE_IMPROBABLE = -2,
   /* An erroneous sequence was seen. */
   DET_NEARLY_IMPOSSIBLE = -3,
-  DET_LOWEST = -3,
+  DET_LOWEST = -3
  };
 
 extern int coding_detector_count;
--- a/src/frame.c	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/frame.c	Thu Apr 24 05:33:44 2003 +0000
@@ -123,7 +123,7 @@
   DISPLAYABLE_PIXEL_TO_CHAR,
   TOTAL_PIXEL_TO_CHAR,
   CHAR_TO_TOTAL_PIXEL,
-  CHAR_TO_DISPLAYABLE_PIXEL,
+  CHAR_TO_DISPLAYABLE_PIXEL
 } pixel_to_char_mode_t;
 
 static void frame_conversion_internal (struct frame *f,
--- a/src/lisp.h	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/lisp.h	Thu Apr 24 05:33:44 2003 +0000
@@ -187,7 +187,7 @@
 #define INT_32_BIT short
 #define UINT_32_BIT unsigned short
 #define MAKE_32_BIT_UNSIGNED_CONSTANT(num) num##U
-#elif /* Unable to find a 32-bit integral type! */
+#elif 1 /* Unable to find a 32-bit integral type! */
 #error What kind of strange-ass system are you running on?
 #endif
 
@@ -4055,7 +4055,7 @@
   OPERATION_DELETE_OBJECT,
   OPERATION_CREATE_OBJECT,
   OPERATION_MODIFY_BUFFER_TEXT,
-  OPERATION_MODIFY_OBJECT_PROPERTY,
+  OPERATION_MODIFY_OBJECT_PROPERTY
 };
 
 int get_inhibit_flags (void);
--- a/src/lrecord.h	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/lrecord.h	Thu Apr 24 05:33:44 2003 +0000
@@ -811,8 +811,9 @@
      lcrecord-lists, where the objects have had their type changed to
      lrecord_type_free and also have had their free bit set, but we mark
      them as normal. */
-  XD_FLAG_FREE_LISP_OBJECT = 8,
+  XD_FLAG_FREE_LISP_OBJECT = 8
 #if 0
+  ,
   /* Suggestions for other possible flags: */
 
   /* Eliminate XD_UNION_DYNAMIC_SIZE and replace it with a flag, like this. */
@@ -824,7 +825,7 @@
      expanded and we need to stick a pointer in the second slot (although
      we could still ensure that the second slot in the first entry was NULL
      or <0). */
-  XD_FLAG_DESCRIPTION_MAP = 32,
+  XD_FLAG_DESCRIPTION_MAP = 32
 #endif
 };
 
--- a/src/text.c	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/text.c	Thu Apr 24 05:33:44 2003 +0000
@@ -703,38 +703,38 @@
 
 /* strcasecmp() implementation from BSD */
 static Ibyte strcasecmp_charmap[] = {
-        '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
-        '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
-        '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
-        '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
-        '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
-        '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
-        '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
-        '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
-        '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
-        '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
-        '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
-        '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
-        '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
-        '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
-        '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
-        '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
-        '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
-        '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
-        '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
-        '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
-        '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
-        '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
-        '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
-        '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
-        '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
-        '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
-        '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
-        '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
-        '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
-        '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
-        '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
-        '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
+        0000, 0001, 0002, 0003, 0004, 0005, 0006, 0007,
+        0010, 0011, 0012, 0013, 0014, 0015, 0016, 0017,
+        0020, 0021, 0022, 0023, 0024, 0025, 0026, 0027,
+        0030, 0031, 0032, 0033, 0034, 0035, 0036, 0037,
+        0040, 0041, 0042, 0043, 0044, 0045, 0046, 0047,
+        0050, 0051, 0052, 0053, 0054, 0055, 0056, 0057,
+        0060, 0061, 0062, 0063, 0064, 0065, 0066, 0067,
+        0070, 0071, 0072, 0073, 0074, 0075, 0076, 0077,
+        0100, 0141, 0142, 0143, 0144, 0145, 0146, 0147,
+        0150, 0151, 0152, 0153, 0154, 0155, 0156, 0157,
+        0160, 0161, 0162, 0163, 0164, 0165, 0166, 0167,
+        0170, 0171, 0172, 0133, 0134, 0135, 0136, 0137,
+        0140, 0141, 0142, 0143, 0144, 0145, 0146, 0147,
+        0150, 0151, 0152, 0153, 0154, 0155, 0156, 0157,
+        0160, 0161, 0162, 0163, 0164, 0165, 0166, 0167,
+        0170, 0171, 0172, 0173, 0174, 0175, 0176, 0177,
+        0200, 0201, 0202, 0203, 0204, 0205, 0206, 0207,
+        0210, 0211, 0212, 0213, 0214, 0215, 0216, 0217,
+        0220, 0221, 0222, 0223, 0224, 0225, 0226, 0227,
+        0230, 0231, 0232, 0233, 0234, 0235, 0236, 0237,
+        0240, 0241, 0242, 0243, 0244, 0245, 0246, 0247,
+        0250, 0251, 0252, 0253, 0254, 0255, 0256, 0257,
+        0260, 0261, 0262, 0263, 0264, 0265, 0266, 0267,
+        0270, 0271, 0272, 0273, 0274, 0275, 0276, 0277,
+        0300, 0301, 0302, 0303, 0304, 0305, 0306, 0307,
+        0310, 0311, 0312, 0313, 0314, 0315, 0316, 0317,
+        0320, 0321, 0322, 0323, 0324, 0325, 0326, 0327,
+        0330, 0331, 0332, 0333, 0334, 0335, 0336, 0337,
+        0340, 0341, 0342, 0343, 0344, 0345, 0346, 0347,
+        0350, 0351, 0352, 0353, 0354, 0355, 0356, 0357,
+        0360, 0361, 0362, 0363, 0364, 0365, 0366, 0367,
+        0370, 0371, 0372, 0373, 0374, 0375, 0376, 0377
 };
 
 /* A version that works like generic strcasecmp() -- only collapsing
--- a/src/unicode.c	Thu Apr 24 05:29:12 2003 +0000
+++ b/src/unicode.c	Thu Apr 24 05:33:44 2003 +0000
@@ -1474,7 +1474,7 @@
   UNICODE_UTF_16,
   UNICODE_UTF_8,
   UNICODE_UTF_7,
-  UNICODE_UCS_4,
+  UNICODE_UCS_4
 };
 
 struct unicode_coding_system