User: james
Date: 06/05/24 18:30:37
Modified: xemacs/src ChangeLog objects-x.c
Log:
Don't use C99/C++ variable declaration style.
<86zmhiax0m.fsf(a)santinel.home.ua>
Revision Changes Path
1.968 +4 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.967
retrieving revision 1.968
diff -u -p -r1.967 -r1.968
--- ChangeLog 2006/05/23 19:38:29 1.967
+++ ChangeLog 2006/05/24 16:30:28 1.968
@@ -1,3 +1,7 @@
+2006-05-16 Andrey Slusar <anrays(a)gmail.com>
+
+ * objects-x.c (x_find_charset_font): Fix build with gcc 2.95.
+
2006-05-23 Aidan Kehoe <kehoea(a)parhasard.net>
* file-coding.c (output_bytes_in_ascii_and_hex):
1.41 +1 -1 XEmacs/xemacs/src/objects-x.c
Index: objects-x.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/objects-x.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -p -r1.40 -r1.41
--- objects-x.c 2006/05/09 10:40:09 1.40
+++ objects-x.c 2006/05/24 16:30:32 1.41
@@ -1215,6 +1215,7 @@ x_find_charset_font (Lisp_Object device,
stderr_out ("Failed fontconfig initialization\n");
else
{
+ struct charset_reporter *cr;
FcPattern *fontxft; /* long-lived, freed at end of this block */
FcResult fcresult;
FcConfig *fcc;
@@ -1302,7 +1303,6 @@ x_find_charset_font (Lisp_Object device,
Optimization: cache the generated FcCharSet in the Mule charset.
Don't forget to destroy it if the Mule charset gets deallocated. */
- struct charset_reporter *cr;
for (cr = charset_table;
cr->charset && !EQ (*(cr->charset), charset);
cr++)
Show replies by date