Variable: zoneinfo-style-world-list

zoneinfo-style-world-list is a customizable variable defined in time.el.gz.

Value

(("America/Los_Angeles" "Seattle")
 ("America/New_York" "New York")
 ("Europe/London" "London")
 ("Europe/Paris" "Paris")
 ("Asia/Calcutta" "Bangalore")
 ("Asia/Tokyo" "Tokyo"))

Documentation

Alist of zoneinfo-style time zones and places for world-clock.

Each element has the form (TIMEZONE LABEL). TIMEZONE should be a string of the form AREA/LOCATION, where AREA is the name of a region -- a continent or ocean, and LOCATION is the name of a specific location, e.g., a city, within that region. LABEL is a string to display as the label of that TIMEZONE's time.

This variable was added, or its default value changed, in Emacs 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/time.el.gz
(defcustom zoneinfo-style-world-list
  '(("America/Los_Angeles" "Seattle")
    ("America/New_York" "New York")
    ("Europe/London" "London")
    ("Europe/Paris" "Paris")
    ("Asia/Calcutta" "Bangalore")
    ("Asia/Tokyo" "Tokyo"))
  "Alist of zoneinfo-style time zones and places for `world-clock'.
Each element has the form (TIMEZONE LABEL).
TIMEZONE should be a string of the form AREA/LOCATION, where AREA is
the name of a region -- a continent or ocean, and LOCATION is the name
of a specific location, e.g., a city, within that region.
LABEL is a string to display as the label of that TIMEZONE's time."
  :type '(repeat (list string string))
  :version "23.1")