Function: calendar-backward-year

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

Signature

(calendar-backward-year ARG)

Documentation

Move the cursor backward ARG years.

Movement is forward is 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-year (arg)
  "Move the cursor backward ARG years.
Movement is forward is ARG is negative."
  (interactive "p")
  (calendar-forward-month (* -12 arg)))