Function: calendar-hebrew-last-day-of-month

calendar-hebrew-last-day-of-month is a byte-compiled function defined in cal-hebrew.el.gz.

Signature

(calendar-hebrew-last-day-of-month MONTH YEAR)

Documentation

The last day of MONTH in YEAR.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-hebrew.el.gz
(defun calendar-hebrew-last-day-of-month (month year)
  "The last day of MONTH in YEAR."
  (if (or (memq month (list 2 4 6 10 13))
          (and (= month 12) (not (calendar-hebrew-leap-year-p year)))
          (and (= month 8) (not (calendar-hebrew-long-heshvan-p year)))
          (and (= month 9) (calendar-hebrew-short-kislev-p year)))
      29
    30))