comparison lisp/calendar/cal-china.el @ 19903:bfd7fbd77e8a

(chinese-calendar-time-zone): Likewise. (chinese-calendar-standard-time-zone-name): Likewise.
author Richard M. Stallman <rms@gnu.org>
date Sat, 13 Sep 1997 06:04:04 +0000
parents 7634c31da26e
children 13b173216a3d
comparison
equal deleted inserted replaced
19902:fa9889643596 19903:bfd7fbd77e8a
59 480) 59 480)
60 "*Number of minutes difference between local standard time for Chinese 60 "*Number of minutes difference between local standard time for Chinese
61 calendar and Coordinated Universal (Greenwich) Time. Default is for Beijing. 61 calendar and Coordinated Universal (Greenwich) Time. Default is for Beijing.
62 This is an expression in `year' since it changed at 1928-01-01 00:00:00 from 62 This is an expression in `year' since it changed at 1928-01-01 00:00:00 from
63 UT+7:45:40 to UT+8." 63 UT+7:45:40 to UT+8."
64 :type 'number 64 :type 'sexp
65 :group 'chinese-calendar) 65 :group 'chinese-calendar)
66 66
67 (defcustom chinese-calendar-location-name "Beijing" 67 (defcustom chinese-calendar-location-name "Beijing"
68 "*Name of location used for calculation of Chinese calendar." 68 "*Name of location used for calculation of Chinese calendar."
69 :type 'string 69 :type 'string
80 80
81 (defcustom chinese-calendar-standard-time-zone-name 81 (defcustom chinese-calendar-standard-time-zone-name
82 '(if (< year 1928) 82 '(if (< year 1928)
83 "PMT" 83 "PMT"
84 "CST") 84 "CST")
85 "*Abbreviated name of standard time zone used for Chinese calendar." 85 "*Abbreviated name of standard time zone used for Chinese calendar.
86 :type 'string 86 This is an expression depending on `year' because it changed
87 at 1928-01-01 00:00:00 from `PMT' to `CST'."
88 :type 'sexp
87 :group 'chinese-calendar) 89 :group 'chinese-calendar)
88 90
89 (defcustom chinese-calendar-daylight-time-zone-name "CDT" 91 (defcustom chinese-calendar-daylight-time-zone-name "CDT"
90 "*Abbreviated name of daylight-savings time zone used for Chinese calendar." 92 "*Abbreviated name of daylight-savings time zone used for Chinese calendar."
91 :type 'string 93 :type 'string