Variable: holiday-oriental-holidays

holiday-oriental-holidays is a customizable variable defined in holidays.el.gz.

Value

((holiday-chinese-new-year)
 (if calendar-chinese-all-holidays-flag
     (append (holiday-chinese 1 15 "Lantern Festival")
	     (holiday-chinese-qingming)
	     (holiday-chinese 5 5 "Dragon Boat Festival")
	     (holiday-chinese 7 7 "Double Seventh Festival")
	     (holiday-chinese 8 15 "Mid-Autumn Festival")
	     (holiday-chinese 9 9 "Double Ninth Festival")
	     (holiday-chinese-winter-solstice))))

Documentation

Oriental holidays.

See the documentation for calendar-holidays for details.

Do not set this variable with setq; instead, use setopt or customize-option.

This variable was added, or its default value changed, in Emacs 23.1.

View in manual

Probably introduced at or before Emacs version 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/holidays.el.gz
;;;###autoload
(defcustom holiday-oriental-holidays
  '((holiday-chinese-new-year)
    (if calendar-chinese-all-holidays-flag
        (append
         (holiday-chinese 1 15 "Lantern Festival")
         (holiday-chinese-qingming)
         (holiday-chinese 5  5 "Dragon Boat Festival")
         (holiday-chinese 7  7 "Double Seventh Festival")
         (holiday-chinese 8 15 "Mid-Autumn Festival")
         (holiday-chinese 9  9 "Double Ninth Festival")
         (holiday-chinese-winter-solstice))))
  "Oriental holidays.
See the documentation for `calendar-holidays' for details.

Do not set this variable with `setq'; instead, use `setopt'
or `customize-option'."
  :version "23.1"                       ; added more holidays
  :set #'holidays--set-calendar-holidays
  :type 'sexp)