From: Richard M. Stallman Date: Sun, 10 Sep 1995 04:36:12 +0000 (+0000) Subject: (setenv): Call set-time-zone-rule when setting TZ. X-Git-Tag: emacs-19.34~2842 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7fd817093fbbd746129e4d4db00779e64347d6ef;p=emacs.git (setenv): Call set-time-zone-rule when setting TZ. --- diff --git a/lisp/env.el b/lisp/env.el index 6a01a690d40..e78bbb314d9 100644 --- a/lisp/env.el +++ b/lisp/env.el @@ -92,6 +92,8 @@ This function works by modifying `process-environment'." (case-fold-search nil) (scan process-environment) found) + (if (string-equal "TZ" variable) + (set-time-zone-rule value)) (while scan (cond ((string-match pattern (car scan)) (setq found t)