# HG changeset patch # User Richard M. Stallman # Date 770293616 0 # Node ID 2f0d34c3059fe2d27f04bed5a63d01de3ddd929a # Parent 9a9c8372af8068ffa75349dfa8c274363328dfdb (calendar-current-time-zone): Fix typo that transposed DST-STARTS-TIME and DST-ENDS-TIME. diff -r 9a9c8372af80 -r 2f0d34c3059f lisp/calendar/cal-dst.el --- 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