aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-09-09 19:37:19 +0000
committerRichard M. Stallman <[email protected]>2002-09-09 19:37:19 +0000
commit989a6aa7dd5628fea2e9bd28af960311ce67421f (patch)
tree53f3a4fe7584189491e7a3754e7132d201714ace /lisp
parent4eb4926c585b0074fb25f014c6d78239ee5b0421 (diff)
(mouse-scroll-calendar-left)
(mouse-scroll-calendar-right, mouse-calendar-other-month): New commands. (calendar-mode-line-format): Use them.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calendar/calendar.el35
1 files changed, 28 insertions, 7 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index 8dfdfcddf1..2b0f6fe1e3 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -2044,7 +2044,7 @@ the inserted text. Value is always t."
"\\<calendar-mode-map>\\[scroll-calendar-left]")
'help-echo "mouse-2: scroll left"
'keymap (make-mode-line-mouse-map 'mouse-2
- #'scroll-calendar-left))
+ 'mouse-scroll-calendar-left))
"Calendar"
(concat
(propertize
@@ -2058,11 +2058,7 @@ the inserted text. Value is always t."
"\\<calendar-mode-map>\\[calendar-other-month] other")
'help-echo "mouse-2: choose another month"
'keymap (make-mode-line-mouse-map
- 'mouse-2
- (lambda ()
- (interactive)
- (call-interactively
- 'calendar-other-month))))
+ 'mouse-2 'mouse-calendar-other-month))
"/"
(propertize
(substitute-command-keys
@@ -2074,7 +2070,7 @@ the inserted text. Value is always t."
"\\<calendar-mode-map>\\[scroll-calendar-right]")
'help-echo "mouse-2: scroll right"
'keymap (make-mode-line-mouse-map
- 'mouse-2 #'scroll-calendar-right)))
+ 'mouse-2 'mouse-scroll-calendar-right)))
"The mode line of the calendar buffer.
This must be a list of items that evaluate to strings--those strings are
@@ -2102,6 +2098,31 @@ under the cursor:
\"\"))
")
+(defun mouse-scroll-calendar-left (event)
+ "Scroll the displayed calendar left by one month.
+Maintains the relative position of the cursor
+with respect to the calendar as well as possible."
+ (interactive "e")
+ (save-selected-window
+ (select-window (posn-window (event-start event)))
+ (scroll-calendar-left 1)))
+
+(defun mouse-scroll-calendar-right (event)
+ "Scroll the displayed calendar right by one month.
+Maintains the relative position of the cursor
+with respect to the calendar as well as possible."
+ (interactive "e")
+ (save-selected-window
+ (select-window (posn-window (event-start event)))
+ (scroll-calendar-right 1)))
+
+(defun mouse-calendar-other-month (event)
+ "Display a three-month calendar centered around a specified month and year."
+ (interactive "e")
+ (save-selected-window
+ (select-window (posn-window (event-start event)))
+ (call-interactively 'calendar-other-month)))
+
(defun calendar-goto-info-node ()
"Go to the info node for the calendar."
(interactive)