diff src/data.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 3d8143fc88e1
children e6854ec89f8e
line wrap: on
line diff
--- a/src/data.c	Thu Feb 03 07:30:22 2005 +0000
+++ b/src/data.c	Thu Feb 03 16:14:08 2005 +0000
@@ -2589,9 +2589,9 @@
 
 static const struct memory_description weak_list_description[] = {
   { XD_LISP_OBJECT, offsetof (struct weak_list, list), 
-  0, 0, XD_FLAG_NO_KKCC },
+    0, { 0 }, XD_FLAG_NO_KKCC },
   { XD_LO_LINK,     offsetof (struct weak_list, next_weak), 
-  0, 0, XD_FLAG_NO_KKCC },
+    0, { 0 }, XD_FLAG_NO_KKCC },
   { XD_END }
 };
 
@@ -3299,11 +3299,11 @@
    is marked here. */
 static const struct memory_description ephemeron_description[] = {
   { XD_LISP_OBJECT, offsetof(struct ephemeron, key),
-    0, 0, XD_FLAG_NO_KKCC },
+    0, { 0 }, XD_FLAG_NO_KKCC },
   { XD_LISP_OBJECT, offsetof(struct ephemeron, cons_chain),
-    0, 0, XD_FLAG_NO_KKCC },
+    0, { 0 }, XD_FLAG_NO_KKCC },
   { XD_LISP_OBJECT, offsetof(struct ephemeron, value),
-    0, 0, XD_FLAG_NO_KKCC },
+    0, { 0 }, XD_FLAG_NO_KKCC },
   { XD_END }
 };