Function: calendar-end-of-month
calendar-end-of-month is an autoloaded, interactive and byte-compiled
function defined in cal-move.el.gz.
Signature
(calendar-end-of-month ARG)
Documentation
Move the cursor forward ARG month ends.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-end-of-month (arg)
"Move the cursor forward ARG month ends."
(interactive "p")
(calendar-cursor-to-nearest-date)
(let* ((date (calendar-cursor-to-date))
(month (calendar-extract-month date))
(day (calendar-extract-day date))
(year (calendar-extract-year date))
(last-day (calendar-last-day-of-month month year))
(last-day (progn
(unless (= day last-day)
(calendar-cursor-to-visible-date
(list month last-day year))
(setq arg (1- arg)))
(calendar-increment-month month year arg)
(list month
(calendar-last-day-of-month month year)
year))))
(if (not (calendar-date-is-visible-p last-day))
(calendar-other-month month year)
(calendar-cursor-to-visible-date last-day)))
(run-hooks 'calendar-move-hook))