diff src/insdel.c @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents 1b0339b048ce
children ecf1ebac70d8
line wrap: on
line diff
--- a/src/insdel.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/insdel.c	Tue Sep 30 15:27:01 2003 +0000
@@ -1824,9 +1824,9 @@
   if (!b->base_buffer)
     {
       BUFFER_FREE (b->text->beg);
-      xfree (b->text->changes);
+      xfree (b->text->changes, struct buffer_text_change_data *);
     }
-  xfree (b->changes);
+  xfree (b->changes, struct each_buffer_change_data *);
 
 #ifdef REGION_CACHE_NEEDS_WORK
   if (b->newline_cache)