Variable: holiday-christian-holidays
holiday-christian-holidays is a customizable variable defined in
holidays.el.gz.
Value
((holiday-easter-etc) (holiday-fixed 12 25 "Christmas")
(if calendar-christian-all-holidays-flag
(append (holiday-fixed 1 6 "Epiphany")
(holiday-julian 12 25 "Christmas (Julian calendar)")
(holiday-greek-orthodox-easter)
(holiday-fixed 8 15 "Assumption")
(holiday-advent 0 "Advent"))))
Documentation
Christian holidays.
See the documentation for calendar-holidays for details.
Do not set this variable with setq; instead, use setopt
or customize-option.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/holidays.el.gz
;;;###autoload
(defcustom holiday-christian-holidays
'((holiday-easter-etc) ; respects calendar-christian-all-holidays-flag
(holiday-fixed 12 25 "Christmas")
(if calendar-christian-all-holidays-flag
(append
(holiday-fixed 1 6 "Epiphany")
(holiday-julian 12 25 "Christmas (Julian calendar)")
(holiday-greek-orthodox-easter)
(holiday-fixed 8 15 "Assumption")
(holiday-advent 0 "Advent"))))
"Christian holidays.
See the documentation for `calendar-holidays' for details.
Do not set this variable with `setq'; instead, use `setopt'
or `customize-option'."
:set #'holidays--set-calendar-holidays
:type 'sexp)