Function: holiday-hebrew-passover

holiday-hebrew-passover is a byte-compiled function defined in cal-hebrew.el.gz.

Signature

(holiday-hebrew-passover &optional ALL)

Documentation

List of dates related to Passover, as visible in calendar window.

Shows only the major holidays, unless calendar-hebrew-all-holidays-flag or ALL is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-hebrew.el.gz
;;;###holiday-autoload
(defun holiday-hebrew-passover (&optional all)
  "List of dates related to Passover, as visible in calendar window.
Shows only the major holidays, unless `calendar-hebrew-all-holidays-flag'
or ALL is non-nil."
  (holiday-filter-visible-calendar
   (mapcan (lambda (y) (holiday-hebrew-passover-1 y all))
           ;; Find years that have visible months Feb~June.
           (calendar-month-visible-p 2 4))))