Function: calendar-backward-month
calendar-backward-month is an autoloaded, interactive and
byte-compiled function defined in cal-move.el.gz.
Signature
(calendar-backward-month ARG)
Documentation
Move the cursor backward by ARG months.
Movement is forward if ARG is negative.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-backward-month (arg)
"Move the cursor backward by ARG months.
Movement is forward if ARG is negative."
(interactive "p")
(calendar-forward-month (- arg)))