]> git.eshelyaron.com Git - emacs.git/commitdiff
(calendar-scroll-left, calendar-scroll-right): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Sat, 8 Mar 2008 20:26:18 +0000 (20:26 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 8 Mar 2008 20:26:18 +0000 (20:26 +0000)
lisp/ChangeLog
lisp/calendar/cal-move.el

index 0c82d64f7a9a3e6af032c08dc4c0f9116eed5fe8..3dbfdb43f6b3d67d1f77f34344d0f069fa8d3429 100644 (file)
@@ -32,6 +32,9 @@
 
        * calendar/cal-iso.el (calendar-iso-read-args): Doc fix.
 
+       * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right):
+       Doc fix.
+
        * calendar/cal-persia.el (persian-calendar-month-name-array)
        (persian-calendar-epoch): Make constants.
 
index 020d6a0553010a20b18b04e4d08d35226d2b160e..ec01ef9ca2181767931cd5c4a3bdc03d2b9bbf34 100644 (file)
@@ -94,7 +94,8 @@ Movement is forward is ARG is negative."
 (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 @@ position of the cursor with respect to the calendar as well as possible."
 (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))