Mercurial > hg > xemacs-beta
comparison src/editfns.c @ 4982:3c3c1d139863
Automatic merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Fri, 05 Feb 2010 11:25:00 -0600 |
parents | 4aebb0131297 16112448d484 |
children | 1537701f08a1 |
comparison
equal
deleted
inserted
replaced
4981:4aebb0131297 | 4982:3c3c1d139863 |
---|---|
829 | 829 |
830 void | 830 void |
831 uncache_home_directory (void) | 831 uncache_home_directory (void) |
832 { | 832 { |
833 if (cached_home_directory) | 833 if (cached_home_directory) |
834 xfree (cached_home_directory, Ibyte *); | 834 xfree (cached_home_directory); |
835 cached_home_directory = NULL; | 835 cached_home_directory = NULL; |
836 } | 836 } |
837 | 837 |
838 /* Returns the home directory */ | 838 /* Returns the home directory */ |
839 Ibyte * | 839 Ibyte * |
1437 tzstring = LISP_STRING_TO_EXTERNAL (tz, Qtime_zone_encoding); | 1437 tzstring = LISP_STRING_TO_EXTERNAL (tz, Qtime_zone_encoding); |
1438 } | 1438 } |
1439 | 1439 |
1440 set_time_zone_rule (tzstring); | 1440 set_time_zone_rule (tzstring); |
1441 if (environbuf) | 1441 if (environbuf) |
1442 xfree (environbuf, Extbyte **); | 1442 xfree (environbuf); |
1443 environbuf = environ; | 1443 environbuf = environ; |
1444 | 1444 |
1445 return Qnil; | 1445 return Qnil; |
1446 } | 1446 } |
1447 | 1447 |