Variable: time-stamp-time-zone
time-stamp-time-zone is a customizable variable defined in
time-stamp.el.gz.
Value
nil
Documentation
The time zone to be used by M-x time-stamp (time-stamp).
Its format is that of the ZONE argument of the format-time-string function.
This variable was added, or its default value changed, in Emacs 20.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/time-stamp.el.gz
(defcustom time-stamp-time-zone nil
"The time zone to be used by \\[time-stamp].
Its format is that of the ZONE argument of the `format-time-string' function."
:type '(choice (const :tag "Emacs local time" nil)
(const :tag "Universal Time" t)
(const :tag "system wall clock time" wall)
(string :tag "TZ environment variable value")
(list :tag "Offset and name"
(integer :tag "Offset (seconds east of UTC)")
(string :tag "Time zone abbreviation"))
(integer :tag "Offset (seconds east of UTC)"))
:version "20.1")