diff src/objects.c @ 2551:9f70af3ac939

[xemacs-hg @ 2005-02-03 16:14:02 by james] Commit Olivier Galibert's dumper updates for bignums and use them. See xemacs-patches message with ID <ps8y685c6p.fsf@diannao.ittc.ku.edu>.
author james
date Thu, 03 Feb 2005 16:14:08 +0000
parents 491f8cf78a9c
children 6fa9919a9a0b
line wrap: on
line diff
--- a/src/objects.c	Thu Feb 03 07:30:22 2005 +0000
+++ b/src/objects.c	Thu Feb 03 16:14:08 2005 +0000
@@ -63,7 +63,7 @@
 
 static const struct memory_description color_instance_data_description_1 []= {
 #ifdef HAVE_TTY
-  { XD_BLOCK_PTR, tty_console, 1, &tty_color_instance_data_description},
+  { XD_BLOCK_PTR, tty_console, 1, { &tty_color_instance_data_description } },
 #endif
   { XD_END }
 };
@@ -77,7 +77,7 @@
   { XD_LISP_OBJECT, offsetof (Lisp_Color_Instance, name)},
   { XD_LISP_OBJECT, offsetof (Lisp_Color_Instance, device)},
   { XD_UNION, offsetof (Lisp_Color_Instance, data),
-    XD_INDIRECT (0, 0), &color_instance_data_description },
+    XD_INDIRECT (0, 0), { &color_instance_data_description } },
   {XD_END}
 };
 
@@ -272,7 +272,7 @@
 
 static const struct memory_description font_instance_data_description_1 []= {
 #ifdef HAVE_TTY
-  { XD_BLOCK_PTR, tty_console, 1, &tty_font_instance_data_description},
+  { XD_BLOCK_PTR, tty_console, 1, { &tty_font_instance_data_description} },
 #endif
   { XD_END }
 };
@@ -287,7 +287,7 @@
   { XD_LISP_OBJECT, offsetof (Lisp_Font_Instance, truename)},
   { XD_LISP_OBJECT, offsetof (Lisp_Font_Instance, device)},
   { XD_UNION, offsetof (Lisp_Font_Instance, data), 
-    XD_INDIRECT (0, 0), &font_instance_data_description },
+    XD_INDIRECT (0, 0), { &font_instance_data_description } },
   { XD_END }
 };