Mercurial > emacs
changeset 7749:2f0d34c3059f
(calendar-current-time-zone): Fix typo that
transposed DST-STARTS-TIME and DST-ENDS-TIME.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 30 May 1994 10:26:56 +0000 |
parents | 9a9c8372af80 |
children | 892098bdaa24 |
files | lisp/calendar/cal-dst.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calendar/cal-dst.el Mon May 30 10:19:16 1994 +0000 +++ b/lisp/calendar/cal-dst.el Mon May 30 10:26:56 1994 +0000 @@ -246,8 +246,8 @@ (cons (/ (abs (- t0-utc-diff t1-utc-diff)) 60) (if (< t0-utc-diff t1-utc-diff) - (list t0-name t1-name t1-rules t2-rules t2-time t1-time) - (list t1-name t0-name t2-rules t1-rules t1-time t2-time) + (list t0-name t1-name t1-rules t2-rules t1-time t2-time) + (list t1-name t0-name t2-rules t1-rules t2-time t1-time) ))))))))))) ;;; The following six defvars relating to daylight savings time should NOT be