From: Leo Liu Date: Fri, 4 Mar 2011 05:00:40 +0000 (-0800) Subject: * lisp/time.el (display-time-world-list): Fix typo. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~674^2~50 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc0e90924a0621bcf7fd3f1b1251a1b2b5d0a470;p=emacs.git * lisp/time.el (display-time-world-list): Fix typo. Fixes: debbugs:7571 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c7ee203ed91..04710d6bcf1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-03-04 Leo + + * time.el (display-time-world-list): Fix typo. (Bug#7571) + 2011-03-04 Zachary Kanfer (tiny change) * cus-edit.el (custom-buffer-create-internal): diff --git a/lisp/time.el b/lisp/time.el index 1bc1cca1112..2e9dd252bd6 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -157,7 +157,7 @@ LABEL is a string to display as the label of that TIMEZONE's time." ;; Determine if zoneinfo style timezones are supported by testing that ;; America/New York and Europe/London return different timezones. (let (gmt nyt) - (set-time-zone-rule "America/New York") + (set-time-zone-rule "America/New_York") (setq nyt (format-time-string "%z")) (set-time-zone-rule "Europe/London") (setq gmt (format-time-string "%z"))