diff options
author | Glenn Morris <rgm@gnu.org> | 2009-06-10 01:32:55 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-06-10 01:32:55 +0000 |
commit | b27c3bc6ec03f081147746a65e05fb5393a91dc9 (patch) | |
tree | 82fcd5da465f32cc3dec03a090d0155d858fd930 /lisp/calendar/cal-dst.el | |
parent | 9903d1e69c79a0260a2747206e48e44b862b9ac1 (diff) | |
download | emacs-b27c3bc6ec03f081147746a65e05fb5393a91dc9.tar.gz |
(calendar-time-zone-daylight-rules): Fix typo in 2008-04-02 change.
Diffstat (limited to 'lisp/calendar/cal-dst.el')
-rw-r--r-- | lisp/calendar/cal-dst.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/cal-dst.el b/lisp/calendar/cal-dst.el index 1478a6ca29d..0bcb61b4d42 100644 --- a/lisp/calendar/cal-dst.el +++ b/lisp/calendar/cal-dst.el @@ -229,7 +229,7 @@ The result has the proper form for `calendar-daylight-savings-starts'." (setq date (cond ((eq (car rule) 'calendar-nth-named-day) (eval (cons 'calendar-nth-named-absday (cdr rule)))) ((eq (car rule) 'calendar-gregorian-from-absolute) - (eval (cdr rule))) + (eval (cadr rule))) (t (calendar-absolute-from-gregorian (eval rule))))) (or (equal (current-time-zone (calendar-time-from-absolute date prevday-sec)) |