Mercurial > hg > xemacs-beta
diff src/editfns.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 | 04bc9d2f42c7 |
line wrap: on
line diff
--- a/src/editfns.c Mon Sep 29 21:53:04 2003 +0000 +++ b/src/editfns.c Tue Sep 30 15:27:01 2003 +0000 @@ -827,7 +827,7 @@ uncache_home_directory (void) { if (cached_home_directory) - xfree (cached_home_directory); + xfree (cached_home_directory, Ibyte *); cached_home_directory = NULL; } @@ -1430,7 +1430,7 @@ set_time_zone_rule (tzstring); if (environbuf) - xfree (environbuf); + xfree (environbuf, Extbyte **); environbuf = environ; return Qnil;