aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorLeo Liu <[email protected]>2011-03-03 21:00:40 -0800
committerGlenn Morris <[email protected]>2011-03-03 21:00:40 -0800
commitfc0e90924a0621bcf7fd3f1b1251a1b2b5d0a470 (patch)
tree5eb9d9b56aa904fc12d949d0124e870a2bb7e540 /lisp
parenta65112fb4157116f450c41e5d3ae8e927d3dde39 (diff)
* lisp/time.el (display-time-world-list): Fix typo.
Fixes: debbugs:7571
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/time.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c7ee203ed9..04710d6bcf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-03-04 Leo <[email protected]>
+
+ * time.el (display-time-world-list): Fix typo. (Bug#7571)
+
2011-03-04 Zachary Kanfer <[email protected]> (tiny change)
* cus-edit.el (custom-buffer-create-internal):
diff --git a/lisp/time.el b/lisp/time.el
index 1bc1cca111..2e9dd252bd 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"))