diff src/doc.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 4542b72c005e
children 21549d437f09
line wrap: on
line diff
--- a/src/doc.c	Mon Sep 29 21:53:04 2003 +0000
+++ b/src/doc.c	Tue Sep 30 15:27:01 2003 +0000
@@ -170,7 +170,7 @@
     }
   UNGCPRO;
   if (buffer != buf) /* We must have allocated buffer above */
-    xfree (buffer);
+    xfree (buffer, Ibyte *);
   return return_me;
 }
 
@@ -995,7 +995,7 @@
     tem = make_string (buf, bufp - buf);
   else
     tem = string;
-  xfree (buf);
+  xfree (buf, Ibyte *);
   UNGCPRO;
   return tem;
 }