Function: calendar-scroll-right

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

Signature

(calendar-scroll-right &optional ARG EVENT)

Documentation

Scroll the displayed calendar window right by ARG months.

If ARG is negative the calendar is scrolled left. Maintains the relative position of the cursor with respect to the calendar as well as possible. EVENT is an event like last-nonmenu-event.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-scroll-right (&optional arg event)
  "Scroll the displayed calendar window right by ARG months.
If ARG is negative the calendar is scrolled left.  Maintains the relative
position of the cursor with respect to the calendar as well as possible.
EVENT is an event like `last-nonmenu-event'."
  (interactive (list (prefix-numeric-value current-prefix-arg)
                     last-nonmenu-event))
  (calendar-scroll-left (- (or arg 1)) event))