Variable: calendar-daylight-time-zone-name
calendar-daylight-time-zone-name is a customizable variable defined in
cal-dst.el.gz.
Value
"UTC"
Documentation
Abbreviated name of daylight saving time zone at calendar-location-name.
For example, "-0400" or "EDT" 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-daylight-time-zone-name
(if (eq calendar-time-zone-style 'numeric)
(if calendar-current-time-zone-cache
(format-time-string
"%z" 0 (* 60 (cadr calendar-current-time-zone-cache)))
"-0000")
(or (nth 3 calendar-current-time-zone-cache) "UTC"))
"Abbreviated name of daylight saving time zone at `calendar-location-name'.
For example, \"-0400\" or \"EDT\" in New York City."
:type 'string
:version "28.1"
:set-after '(calendar-time-zone-style)
:group 'calendar-dst)