diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-11-05 19:49:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-11-05 19:49:19 +0000 |
commit | 250a72a239966cb83ed2653188c0ac020bbab643 (patch) | |
tree | 801eb22894f4ef9c611e41b0ec4655c0d1f0c15d /src | |
parent | dde0fd51f72dc0a56780030b050570bc76299c91 (diff) | |
download | emacs-250a72a239966cb83ed2653188c0ac020bbab643.tar.gz |
(Fencode_time): Use xfree, not free.
Diffstat (limited to 'src')
-rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index bff9fa8c35c..c2c0df9241b 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -795,7 +795,7 @@ If you want them to stand for years in this century, you must do that yourself." /* Restore TZ to previous value. */ newenv = environ; environ = oldenv; - free (newenv); + xfree (newenv); #ifdef LOCALTIME_CACHE tzset (); #endif |