Function: org-calendar-scroll-three-months-left
org-calendar-scroll-three-months-left is an interactive and
byte-compiled function defined in org.el.gz.
Signature
(org-calendar-scroll-three-months-left)
Documentation
Scroll the displayed calendar left by three months.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;; FIXME: Since Emacs 31, calendar.el has `calendar-total-months'.
;; So, we are not neccesarily scrolling "three" months.
;; Maybe rename.
(defun org-calendar-scroll-three-months-left ()
"Scroll the displayed calendar left by three months."
(interactive)
(org-funcall-in-calendar
(if (fboundp 'calendar-scroll-calendar-left)
#'calendar-scroll-calendar-left
(with-suppressed-warnings ((obsolete calendar-scroll-left-three-months))
#'calendar-scroll-left-three-months))
nil 1))