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.

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

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
  (mapcar 'purecopy
  '((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."
  :version "23.1"                       ; added more holidays
  :type 'sexp)