Function: calendar-hebrew-parasha-name
calendar-hebrew-parasha-name is a byte-compiled function defined in
cal-hebrew.el.gz.
Signature
(calendar-hebrew-parasha-name P)
Documentation
Name(s) corresponding to parasha P.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-hebrew.el.gz
(defun calendar-hebrew-parasha-name (p)
"Name(s) corresponding to parasha P."
(if (arrayp p) ; combined parasha
(format "%s/%s"
(aref calendar-hebrew-parashiot-names (aref p 0))
(aref calendar-hebrew-parashiot-names (aref p 1)))
(aref calendar-hebrew-parashiot-names p)))