diff src/console.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 6fa9919a9a0b
line wrap: on
line diff
--- a/src/console.c	Thu Feb 03 07:30:22 2005 +0000
+++ b/src/console.c	Thu Feb 03 16:14:08 2005 +0000
@@ -115,9 +115,9 @@
 
 static const struct memory_description console_data_description_1 []= {
 #ifdef HAVE_TTY
-  { XD_BLOCK_PTR, tty_console, 1, &tty_console_data_description},
+  { XD_BLOCK_PTR, tty_console, 1, { &tty_console_data_description} },
 #endif
-  { XD_BLOCK_PTR, stream_console, 1, &stream_console_data_description},
+  { XD_BLOCK_PTR, stream_console, 1, { &stream_console_data_description} },
   { XD_END }
 };
 
@@ -130,9 +130,9 @@
 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (struct console, x) },
 #include "conslots.h"
   { XD_BLOCK_PTR, offsetof (struct console, conmeths), 1,
-    &console_methods_description },
+    { &console_methods_description } },
   { XD_UNION, offsetof (struct console, console_data), 
-    XD_INDIRECT (0, 0), &console_data_description },
+    XD_INDIRECT (0, 0), { &console_data_description } },
   { XD_END }
 };
 
@@ -1227,7 +1227,8 @@
 
 static const struct memory_description cte_description_1[] = {
   { XD_LISP_OBJECT, offsetof (console_type_entry, symbol) },
-  { XD_BLOCK_PTR,  offsetof (console_type_entry, meths), 1, &console_methods_description },
+  { XD_BLOCK_PTR,  offsetof (console_type_entry, meths), 1,
+    { &console_methods_description } },
   { XD_END }
 };