Variable: holiday-bahai-holidays

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

Value

((holiday-bahai-new-year)
 (holiday-bahai-ridvan)
 (holiday-fixed 5 23 "Declaration of the Báb")
 (holiday-fixed 5 29 "Ascension of Bahá’u’lláh")
 (holiday-fixed 7 9 "Martyrdom of the Báb")
 (holiday-fixed 10 20 "Birth of the Báb")
 (holiday-fixed 11 12 "Birth of Bahá’u’lláh")
 (if calendar-bahai-all-holidays-flag
     (append
      (holiday-fixed 11 26 "Day of the Covenant")
      (holiday-fixed 11 28 "Ascension of `Abdu’l-Bahá"))))

Documentation

Bahá’í holidays.

See the documentation for calendar-holidays for details.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/holidays.el.gz
;;;###autoload
(defcustom holiday-bahai-holidays
  (mapcar 'purecopy
  '((holiday-bahai-new-year)
    (holiday-bahai-ridvan)      ; respects calendar-bahai-all-holidays-flag
    (holiday-fixed  5 23 "Declaration of the Báb")
    (holiday-fixed  5 29 "Ascension of Bahá’u’lláh")
    (holiday-fixed  7  9 "Martyrdom of the Báb")
    (holiday-fixed 10 20 "Birth of the Báb")
    (holiday-fixed 11 12 "Birth of Bahá’u’lláh")
    (if calendar-bahai-all-holidays-flag
        (append
         (holiday-fixed 11 26 "Day of the Covenant")
         (holiday-fixed 11 28 "Ascension of `Abdu’l-Bahá")))))
  "Bahá’í holidays.
See the documentation for `calendar-holidays' for details."
  :type 'sexp)