Function: calendar-forward-year

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

Signature

(calendar-forward-year ARG)

Documentation

Move the cursor forward by ARG years.

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