Function: calendar-chinese-month-list
calendar-chinese-month-list is a byte-compiled function defined in
cal-china.el.gz.
Signature
(calendar-chinese-month-list START END)
Documentation
List of starting dates of Chinese months from START to END.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-china.el.gz
(defun calendar-chinese-month-list (start end)
"List of starting dates of Chinese months from START to END."
(if (<= start end)
(let ((new-moon (calendar-chinese-new-moon-on-or-after start)))
(if (<= new-moon end)
(cons new-moon
(calendar-chinese-month-list (1+ new-moon) end))))))