org.el: Fix bindings of < and > for calendar scrolling
[This patch taken from upstream Org repo with 8b63dc9 dated 2014-10-20 (Bug#23725).] * lisp/org/org.el (org-read-date-minibuffer-local-map): Switch to the current calendar API for scrolling the calendar.
This commit is contained in:
parent
a813487f1a
commit
27fe1e459a
1 changed files with 2 additions and 2 deletions
|
@ -16296,10 +16296,10 @@ So these are more for recording a certain time/date."
|
|||
(message "")))
|
||||
(org-defkey map ">"
|
||||
(lambda () (interactive)
|
||||
(org-eval-in-calendar '(scroll-calendar-left 1))))
|
||||
(org-eval-in-calendar '(calendar-scroll-left 1))))
|
||||
(org-defkey map "<"
|
||||
(lambda () (interactive)
|
||||
(org-eval-in-calendar '(scroll-calendar-right 1))))
|
||||
(org-eval-in-calendar '(calendar-scroll-right 1))))
|
||||
(org-defkey map "\C-v"
|
||||
(lambda () (interactive)
|
||||
(org-eval-in-calendar
|
||||
|
|
Loading…
Add table
Reference in a new issue