From: Richard M. Stallman Date: Mon, 30 May 1994 10:26:56 +0000 (+0000) Subject: (calendar-current-time-zone): Fix typo that X-Git-Tag: emacs-19.34~8104 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38c8f5d34738c3ad935a23a20935b218ef85daa6;p=emacs.git (calendar-current-time-zone): Fix typo that transposed DST-STARTS-TIME and DST-ENDS-TIME. --- 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