Variable: calendar-chinese-daylight-saving-start

calendar-chinese-daylight-saving-start is a customizable variable defined in cal-china.el.gz.

Value

nil

Documentation

Sexp giving the date on which daylight saving time starts.

Default is for no daylight saving time. See documentation of calendar-daylight-savings-starts.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
(defcustom calendar-chinese-daylight-saving-start nil
;; The correct value is as follows, but the Chinese calendrical
;; authorities do NOT use DST in determining astronomical events:
;;  '(cond ((< 1986 year) (calendar-nth-named-day 1 0 4 year 10))
;;         ((= 1986 year) '(5 4 1986))
;;         (t nil))
  "Sexp giving the date on which daylight saving time starts.
Default is for no daylight saving time.  See documentation of
`calendar-daylight-savings-starts'."
  :type 'sexp
  :risky t
  :group 'calendar-chinese)