changeset 1575:e0ca0b9b1a35

[xemacs-hg @ 2003-07-17 13:10:48 by crestani] 2003-06-11 Marcus Crestani <crestani@informatik.uni-tuebingen.de> * opaque.c: added opaque_ptr_description
author crestani
date Thu, 17 Jul 2003 13:10:49 +0000
parents c58ffeded728
children bd921b813d33
files src/ChangeLog src/opaque.c
diffstat 2 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Wed Jul 16 21:52:20 2003 +0000
+++ b/src/ChangeLog	Thu Jul 17 13:10:49 2003 +0000
@@ -1,3 +1,4 @@
+
 2003-07-02  Mike Sperber  <mike@xemacs.org>
 
 	* toolbar.c (update_frame_toolbars_geometry): Update the frame
@@ -14,6 +15,10 @@
 	* data.c (eq_with_ebola_notice): Fix typo in comment.
 	(Ftrue_list_p): Improve docstring.
 
+2003-06-11  Marcus Crestani  <crestani@informatik.uni-tuebingen.de>
+
+	* opaque.c: added opaque_ptr_description
+
 2003-05-22  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	* alloc.c (allocate_big_string_chars): New.
--- a/src/opaque.c	Wed Jul 16 21:52:20 2003 +0000
+++ b/src/opaque.c	Thu Jul 17 13:10:49 2003 +0000
@@ -145,11 +145,15 @@
   return (unsigned long) XOPAQUE_PTR (obj)->ptr;
 }
 
+static const struct memory_description opaque_ptr_description[] = {
+  { XD_END }
+};
+
 DEFINE_LRECORD_IMPLEMENTATION ("opaque-ptr", opaque_ptr,
 			       0, /*dumpable-flag*/
 			       0, print_opaque_ptr, 0,
 			       equal_opaque_ptr, hash_opaque_ptr,
-			       0, Lisp_Opaque_Ptr);
+			       opaque_ptr_description, Lisp_Opaque_Ptr);
 
 Lisp_Object
 make_opaque_ptr (void *val)