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, "-0500" or "EST" in New York City.
This variable was added, or its default value changed, in Emacs 28.1.
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) "UTC"))
"Abbreviated name of standard time zone at `calendar-location-name'.
For example, \"-0500\" or \"EST\" in New York City."
:type 'string
:version "28.1"
:set-after '(calendar-time-zone-style)
:group 'calendar-dst)