# HG changeset patch # User Paul Eggert # Date 846474959 0 # Node ID 0bf8dab67f9196e14fcffc6461614f0493305376 # Parent 2602c284eb11ee1b8be1db2493cb86681f8bf7ed (timezone-time-from-absolute): Fix off-by-one error in current-time-origin. diff -r 2602c284eb11 -r 0bf8dab67f91 lisp/timezone.el --- a/lisp/timezone.el Sat Oct 26 18:16:50 1996 +0000 +++ b/lisp/timezone.el Mon Oct 28 03:55:59 1996 +0000 @@ -277,7 +277,7 @@ or nil if the date cannot be thus represented. DATE is the number of days elapsed since the (imaginary) Gregorian date Sunday, December 31, 1 BC." - (let* ((current-time-origin 719162) + (let* ((current-time-origin 719163) ;; (timezone-absolute-from-gregorian 1 1 1970) (days (- date current-time-origin)) (seconds-per-day (float 86400))