Function: cal-tex-next-month
cal-tex-next-month is a byte-compiled function defined in
cal-tex.el.gz.
Signature
(cal-tex-next-month DATE)
Documentation
Return the date of the first day in the month following DATE.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defun cal-tex-next-month (date)
"Return the date of the first day in the month following DATE."
(let ((month (calendar-extract-month date))
(year (calendar-extract-year date)))
(calendar-increment-month month year 1)
(list month 1 year)))