From 94455fbb88eeecde368ac25667c2e23ca8d1f29a Mon Sep 17 00:00:00 2001 Message-Id: <94455fbb88eeecde368ac25667c2e23ca8d1f29a.1714821138.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 13 Jan 1998 11:10:44 +0000 Subject: [PATCH] Add `TZ' to the list of variables to be preserved. Organization: Straylight/Edgeware From: mdw --- src/become.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 --- * -- [mdw]