From: Richard M. Stallman Date: Tue, 5 Nov 1996 19:49:19 +0000 (+0000) Subject: (Fencode_time): Use xfree, not free. X-Git-Tag: emacs-20.1~3423 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0efcacfa641146bb45b0580f063747950dd9acd;p=emacs.git (Fencode_time): Use xfree, not free. --- 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