summaryrefslogtreecommitdiff
path: root/lisp/timezone.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-12-26 01:24:38 +0000
committerRichard M. Stallman <rms@gnu.org>1994-12-26 01:24:38 +0000
commit13d76d1ca585fbdc1810970b247a2053a8f3cdcc (patch)
treef505a0e9f89dd705c61c6bc1692808e8b1030edf /lisp/timezone.el
parent448b61c92a3c32c2ce22e4093c9cd9f869856aa9 (diff)
downloademacs-13d76d1ca585fbdc1810970b247a2053a8f3cdcc.tar.gz
(timezone-fix-time): For year values < 50, add 2000.
Diffstat (limited to 'lisp/timezone.el')
-rw-r--r--lisp/timezone.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/timezone.el b/lisp/timezone.el
index 56dbff02b5b..5e0fd7f105b 100644
--- a/lisp/timezone.el
+++ b/lisp/timezone.el
@@ -291,7 +291,11 @@ If LOCAL is nil, it is assumed to be GMT.
If TIMEZONE is nil, use the local time zone."
(let* ((date (timezone-parse-date date))
(year (string-to-int (aref date 0)))
- (year (if (< year 100) (+ year 1900) year))
+ (year (cond ((< year 50)
+ (+ year 2000))
+ ((< year 100)
+ (+ year 1900))
+ (t year)))
(month (string-to-int (aref date 1)))
(day (string-to-int (aref date 2)))
(time (timezone-parse-time (aref date 3)))