Function: calendar-backward-week

calendar-backward-week is an autoloaded, interactive and byte-compiled function defined in cal-move.el.gz.

Signature

(calendar-backward-week ARG)

Documentation

Move the cursor back ARG weeks.

Moves forward if ARG is negative.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-backward-week (arg)
  "Move the cursor back ARG weeks.
Moves forward if ARG is negative."
  (interactive "p")
  (calendar-forward-day (* arg -7)))