diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-30 10:26:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-30 10:26:56 +0000 |
commit | 38c8f5d34738c3ad935a23a20935b218ef85daa6 (patch) | |
tree | bf7634899a7cfaca8ec9413f80b4fc926e63e325 /lisp/calendar/cal-dst.el | |
parent | fe45da4e02c835ba6439c53a259f2ee8f2f0813d (diff) | |
download | emacs-38c8f5d34738c3ad935a23a20935b218ef85daa6.tar.gz |
(calendar-current-time-zone): Fix typo that
transposed DST-STARTS-TIME and DST-ENDS-TIME.
Diffstat (limited to 'lisp/calendar/cal-dst.el')
-rw-r--r-- | lisp/calendar/cal-dst.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el index 277e9d88531..f48a9feb1d9 100644 --- a/lisp/calendar/cal-dst.el +++ b/lisp/calendar/cal-dst.el @@ -246,8 +246,8 @@ it can't find." (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 |