# HG changeset patch # User Glenn Morris # Date 1205007924 0 # Node ID decf6dfe987693e77878790305522fa5bffd1d18 # Parent ee38530c8cf35622e4e3a2d01c655a0cfd4945fe (calendar-scroll-left, calendar-scroll-right): Doc fix. diff -r ee38530c8cf3 -r decf6dfe9876 lisp/calendar/cal-move.el --- a/lisp/calendar/cal-move.el Sat Mar 08 20:22:36 2008 +0000 +++ b/lisp/calendar/cal-move.el Sat Mar 08 20:25:24 2008 +0000 @@ -94,7 +94,8 @@ (defun calendar-scroll-left (&optional arg event) "Scroll the displayed calendar left by ARG months. 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." +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)) (unless arg (setq arg 1)) @@ -119,7 +120,8 @@ (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." +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))