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

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

Signature

(calendar-hebrew-last-month-of-year YEAR)

Documentation

The last month of the Hebrew calendar YEAR.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-hebrew.el.gz
(defun calendar-hebrew-last-month-of-year (year)
  "The last month of the Hebrew calendar YEAR."
  (if (calendar-hebrew-leap-year-p year)
      13
    12))