]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/time.el (display-time-world-list): Fix typo.
authorLeo Liu <sdl.web@gmail.com>
Fri, 4 Mar 2011 05:00:40 +0000 (21:00 -0800)
committerGlenn Morris <rgm@gnu.org>
Fri, 4 Mar 2011 05:00:40 +0000 (21:00 -0800)
Fixes: debbugs:7571
lisp/ChangeLog
lisp/time.el

index c7ee203ed91bce9c005790d83946a44f6b3e5a1c..04710d6bcf1578fe3b9f9e00b9fc2546ddc024d0 100644 (file)
@@ -1,3 +1,7 @@
+2011-03-04  Leo  <sdl.web@gmail.com>
+
+       * time.el (display-time-world-list): Fix typo.  (Bug#7571)
+
 2011-03-04  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
 
        * cus-edit.el (custom-buffer-create-internal):
index 1bc1cca1112822733501cb71b6f3ba6a6490de56..2e9dd252bd64e3307e559c049dd06d558f6ab4c1 100644 (file)
@@ -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"))