Function: calendar-show-fewer-months
calendar-show-fewer-months is an autoloaded, interactive and
byte-compiled function defined in cal-move.el.gz.
Signature
(calendar-show-fewer-months &optional ARG)
Documentation
Show ARG fewer months on the right in the calendar.
If the date corresponding to current cursor position is beyond the new calendar range, scroll the calendar left so that the date remains in the view.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-move.el.gz
;;;###cal-autoload
(defun calendar-show-fewer-months (&optional arg)
"Show ARG fewer months on the right in the calendar.
If the date corresponding to current cursor position is beyond the new
calendar range, scroll the calendar left so that the date remains in the
view."
(interactive "p" calendar-mode)
(calendar-show-more-months (- arg)))