comparison 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
comparison
equal deleted inserted replaced
1725:7ff8f4d70aec 1726:a8d8f419b459
825 825
826 void 826 void
827 uncache_home_directory (void) 827 uncache_home_directory (void)
828 { 828 {
829 if (cached_home_directory) 829 if (cached_home_directory)
830 xfree (cached_home_directory); 830 xfree (cached_home_directory, Ibyte *);
831 cached_home_directory = NULL; 831 cached_home_directory = NULL;
832 } 832 }
833 833
834 /* Returns the home directory */ 834 /* Returns the home directory */
835 Ibyte * 835 Ibyte *
1428 LISP_STRING_TO_EXTERNAL (tz, tzstring, Qnative); 1428 LISP_STRING_TO_EXTERNAL (tz, tzstring, Qnative);
1429 } 1429 }
1430 1430
1431 set_time_zone_rule (tzstring); 1431 set_time_zone_rule (tzstring);
1432 if (environbuf) 1432 if (environbuf)
1433 xfree (environbuf); 1433 xfree (environbuf, Extbyte **);
1434 environbuf = environ; 1434 environbuf = environ;
1435 1435
1436 return Qnil; 1436 return Qnil;
1437 } 1437 }
1438 1438