Function: calendar-scroll-calendar-left
calendar-scroll-calendar-left is an autoloaded, interactive and
byte-compiled function defined in cal-move.el.gz.
Signature
(calendar-scroll-calendar-left ARG &optional EVENT)
Documentation
Scroll the displayed calendar window left ARG times.
If ARG is negative the calendar is scrolled right. Maintains the relative
position of the cursor with respect to the calendar as well as possible.
EVENT is an event like last-nonmenu-event.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Aliases
calendar-scroll-left-three-months (obsolete since 31.1)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-scroll-calendar-left (arg &optional event)
"Scroll the displayed calendar window left ARG times.
If ARG is negative the calendar is scrolled right. 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 (* calendar-total-months arg) event))