Function: org-calendar-scroll-three-months-right

org-calendar-scroll-three-months-right is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-calendar-scroll-three-months-right)

Documentation

Scroll the displayed calendar right by three months.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-calendar-scroll-three-months-right ()
  "Scroll the displayed calendar right by three months."
  (interactive)
  (org-funcall-in-calendar
   (if (fboundp 'calendar-scroll-calendar-right)
       #'calendar-scroll-calendar-right
     (with-suppressed-warnings ((obsolete calendar-scroll-right-three-months))
       #'calendar-scroll-right-three-months))
   nil 1))