Variable: calendar-standard-time-zone-name

calendar-standard-time-zone-name is a customizable variable defined in cal-dst.el.gz.

Value

"UTC"

Documentation

Abbreviated name of standard time zone at calendar-location-name.

For example, "EST" in New York City, "PST" for Los Angeles.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-dst.el.gz
(defcustom calendar-standard-time-zone-name
  (if (eq calendar-time-zone-style 'numeric)
      (if calendar-current-time-zone-cache
          (format-time-string
           "%z" 0 (* 60 (car calendar-current-time-zone-cache)))
        "+0000")
    (or (nth 2 calendar-current-time-zone-cache) "EST"))
  "Abbreviated name of standard time zone at `calendar-location-name'.
For example, \"EST\" in New York City, \"PST\" for Los Angeles."
  :type 'string
  :version "28.1"
  :set-after '(calendar-time-zone-style)
  :group 'calendar-dst)