Mercurial > hg > xemacs-beta
diff src/buffer.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 | 87084e8445a7 |
children | 61855263cb07 |
line wrap: on
line diff
--- a/src/buffer.c Mon Sep 29 21:53:04 2003 +0000 +++ b/src/buffer.c Tue Sep 30 15:27:01 2003 +0000 @@ -2868,7 +2868,7 @@ #ifdef WIN32_NATIVE { Ibyte *newinit = mswindows_canonicalize_filename (initial_directory); - xfree (initial_directory); + xfree (initial_directory, Ibyte *); initial_directory = newinit; } @@ -2886,7 +2886,7 @@ XECOPY_TCHAR (p, '\0'); qxeSetCurrentDirectory (modname); - xfree (modname); + xfree (modname, Extbyte *); } #endif }