From: mdw Date: Tue, 13 Jan 1998 11:10:44 +0000 (+0000) Subject: Add `TZ' to the list of variables to be preserved. X-Git-Tag: 1.3.3~59 X-Git-Url: https://git.distorted.org.uk/~mdw/become/commitdiff_plain/94455fbb88eeecde368ac25667c2e23ca8d1f29a?hp=c758e6541ca05409b178dd9629e9337494c49890 Add `TZ' to the list of variables to be preserved. --- diff --git a/src/become.c b/src/become.c index 79ec7ae..2b8eedd 100644 --- a/src/become.c +++ b/src/become.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: become.c,v 1.14 1998/01/12 16:45:39 mdw Exp $ + * $Id: become.c,v 1.15 1998/01/13 11:10:44 mdw Exp $ * * Main code for `become' * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: become.c,v $ + * Revision 1.15 1998/01/13 11:10:44 mdw + * Add `TZ' to the list of variables to be preserved. + * * Revision 1.14 1998/01/12 16:45:39 mdw * Fix copyright date. * @@ -1139,7 +1142,7 @@ done_options: */ static char *preserve[] = { - "TERM", "DISPLAY", 0 + "TERM", "DISPLAY", "TZ", 0 }; /* --- Variables to be expunged --- *