Variable: parse-time-zoneinfo

parse-time-zoneinfo is a variable defined in parse-time.el.gz.

Value

(("z" 0) ("ut" 0) ("gmt" 0) ("pst" -28800) ("pdt" -25200 t)
 ("mst" -25200) ("mdt" -21600 t) ("cst" -21600) ("cdt" -18000 t)
 ("est" -18000) ("edt" -14400 t))

Documentation

(zoneinfo seconds-off daylight-savings-time-p)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/parse-time.el.gz
(defvar parse-time-zoneinfo `(("z" 0) ("ut" 0) ("gmt" 0)
			      ("pst" ,(* -8 3600)) ("pdt" ,(* -7 3600) t)
			      ("mst" ,(* -7 3600)) ("mdt" ,(* -6 3600) t)
			      ("cst" ,(* -6 3600)) ("cdt" ,(* -5 3600) t)
			      ("est" ,(* -5 3600)) ("edt" ,(* -4 3600) t))
  "(zoneinfo seconds-off daylight-savings-time-p)")