]> git.eshelyaron.com Git - emacs.git/commitdiff
(cal-menu-scroll-menu, cal-menu-global-mouse-menu): Use new names.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 27 Jul 2007 06:15:40 +0000 (06:15 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 27 Jul 2007 06:15:40 +0000 (06:15 +0000)
lisp/ChangeLog
lisp/calendar/cal-menu.el

index a8e9dac3f5eb7754642a3cb654f170a67c1bf934..56c3294ea1c12428370c11812fb6ff3886c708d0 100644 (file)
@@ -1,5 +1,8 @@
 2007-07-27  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * calendar/cal-menu.el (cal-menu-scroll-menu)
+       (cal-menu-global-mouse-menu): Use new names.
+
        * calendar/cal-move.el (calendar-scroll-left, calendar-scroll-right)
        (calendar-scroll-left-three-months)
        (calendar-scroll-right-three-months): Clean up namespace.
index 40cf158dcd675c03e9119a645fe3f8fe48c77a5b..5da73d26d4edd4d346220639aebc46f60dd34904 100644 (file)
 
 (defconst cal-menu-scroll-menu
   '("Scroll"
-    ["Forward 1 Month" scroll-calendar-left]
-    ["Forward 3 Months" scroll-calendar-left-three-months]
+    ["Forward 1 Month" calendar-scroll-left]
+    ["Forward 3 Months" calendar-scroll-left-three-months]
     ["Forward 1 Year" "4\C-v"]
-    ["Backward 1 Month" scroll-calendar-right]
-    ["Backward 3 Months" scroll-calendar-right-three-months]
+    ["Backward 1 Month" calendar-scroll-right]
+    ["Backward 3 Months" calendar-scroll-right-three-months]
     ["Backward 1 Year" "4\ev"]))
 
 (defun cal-menu-x-popup-menu (position menu)
@@ -459,8 +459,8 @@ The output is in landscape format, one month to a page."
 (easy-menu-define cal-menu-global-mouse-menu nil
   "Menu bound to a mouse event, not specific to the mouse-click location."
   '("Calendar"
-    ["Scroll forward" scroll-calendar-left-three-months]
-    ["Scroll backward" scroll-calendar-right-three-months]
+    ["Scroll forward" calendar-scroll-left-three-months]
+    ["Scroll backward" calendar-scroll-right-three-months]
     ["Mark diary entries" mark-diary-entries]
     ["List holidays" list-calendar-holidays]
     ["Mark holidays" mark-calendar-holidays]