* 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 c7ee203..04710d6 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 1bc1cca..2e9dd25 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"))