summaryrefslogtreecommitdiff
path: root/src/editfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-11-05 19:49:19 +0000
committerRichard M. Stallman <rms@gnu.org>1996-11-05 19:49:19 +0000
commit250a72a239966cb83ed2653188c0ac020bbab643 (patch)
tree801eb22894f4ef9c611e41b0ec4655c0d1f0c15d /src/editfns.c
parentdde0fd51f72dc0a56780030b050570bc76299c91 (diff)
downloademacs-250a72a239966cb83ed2653188c0ac020bbab643.tar.gz
(Fencode_time): Use xfree, not free.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c2
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