# HG changeset patch # User crestani # Date 1153234890 0 # Node ID 8b1d806afbb3cccce85027e194256e6a182eef0e # Parent a1385d1f5d362e78601f076f27740aa082632399 [xemacs-hg @ 2006-07-18 15:01:27 by crestani] 2006-07-18 Marcus Crestani * alloc.c: Fix typo in string_direct_data_description. diff -r a1385d1f5d36 -r 8b1d806afbb3 src/ChangeLog --- a/src/ChangeLog Mon Jul 17 21:50:48 2006 +0000 +++ b/src/ChangeLog Tue Jul 18 15:01:30 2006 +0000 @@ -1,3 +1,7 @@ +2006-07-18 Marcus Crestani + + * alloc.c: Fix typo in string_direct_data_description. + 2006-07-07 Jerry James * sound.c (init_native_sound): Make the target of a strcpy be diff -r a1385d1f5d36 -r 8b1d806afbb3 src/alloc.c --- a/src/alloc.c Mon Jul 17 21:50:48 2006 +0000 +++ b/src/alloc.c Tue Jul 18 15:01:30 2006 +0000 @@ -2378,7 +2378,7 @@ static const struct memory_description string_direct_data_description[] = { - { XD_BYTECOUNT, offsetof (Lisp_String_Indirect_Data, size) }, + { XD_BYTECOUNT, offsetof (Lisp_String_Direct_Data, size) }, { XD_END } };