aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-11-05 19:49:19 +0000
committerRichard M. Stallman1996-11-05 19:49:19 +0000
commitc0efcacfa641146bb45b0580f063747950dd9acd (patch)
tree237af422f71c59141489f57b116b6ba0780ef385 /src
parent99351a0ddacd3044610894b9c19b9e661972432c (diff)
downloademacs-c0efcacfa641146bb45b0580f063747950dd9acd.tar.gz
emacs-c0efcacfa641146bb45b0580f063747950dd9acd.zip
(Fencode_time): Use xfree, not free.
Diffstat (limited to 'src')
-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."
795 /* Restore TZ to previous value. */ 795 /* Restore TZ to previous value. */
796 newenv = environ; 796 newenv = environ;
797 environ = oldenv; 797 environ = oldenv;
798 free (newenv); 798 xfree (newenv);
799#ifdef LOCALTIME_CACHE 799#ifdef LOCALTIME_CACHE
800 tzset (); 800 tzset ();
801#endif 801#endif