diff src/lisp.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 01c57eb70ae9
children d9d4999d5f5c
line wrap: on
line diff
--- 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);