Variable: calendar-chinese-time-zone

calendar-chinese-time-zone is a customizable variable defined in cal-china.el.gz.

Value

(if (< year 1928) (+ 465 (/ 40.0 60.0)) 480)

Documentation

Minutes difference between local standard time for Chinese calendar and UTC.

Default is for Beijing. This is an expression in year since it changed at
1928-01-01 00:00:00 from UT+7:45:40 to UT+8.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
(defcustom calendar-chinese-time-zone
  '(if (< year 1928)
       (+ 465 (/ 40.0 60.0))
     480)
  "Minutes difference between local standard time for Chinese calendar and UTC.
Default is for Beijing.  This is an expression in `year' since it changed at
1928-01-01 00:00:00 from UT+7:45:40 to UT+8."
  :type 'sexp
  :group 'calendar-chinese)