]> git.eshelyaron.com Git - emacs.git/commitdiff
(calendar-mode-map): Bind < and > usefully.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Aug 2005 11:30:36 +0000 (11:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Aug 2005 11:30:36 +0000 (11:30 +0000)
lisp/calendar/calendar.el

index ada15878f13375a3e44ea7d2b17e02fb0577399a..3e075b9d6bd564fa4e763d2576a11a087d61e0d5 100644 (file)
@@ -2205,9 +2205,11 @@ movement commands will not work correctly."
                                 calendar-mode-map global-map)
       (setq l (cdr l))))
   (define-key calendar-mode-map "-"     'negative-argument)
+  (define-key calendar-mode-map ">"     'scroll-calendar-right)
   (define-key calendar-mode-map "\C-x>" 'scroll-calendar-right)
   (define-key calendar-mode-map [prior] 'scroll-calendar-right-three-months)
   (define-key calendar-mode-map "\ev"   'scroll-calendar-right-three-months)
+  (define-key calendar-mode-map "<"     'scroll-calendar-left)
   (define-key calendar-mode-map "\C-x<" 'scroll-calendar-left)
   (define-key calendar-mode-map [next]  'scroll-calendar-left-three-months)
   (define-key calendar-mode-map "\C-v"  'scroll-calendar-left-three-months)